MathExecutor/README.md

102 lines
1.7 KiB
Markdown
Raw Normal View History

2013-03-14 04:27:37 +04:00
# NXP MathExecutor
Simple math expressions calculator
2013-03-14 04:36:17 +04:00
## Install via Composer
2013-03-14 04:36:29 +04:00
All instructions to install here: https://packagist.org/packages/nxp/math-executor
## Sample usage:
```php
require "vendor/autoload.php";
$calculator = new \NXP\MathExecutor();
print $calculator->execute("1 + 2 * (2 - (4+10))^2 + sin(10)");
```
## Functions:
Default functions:
* sin
* cos
* tn
* asin
* acos
* atn
* min
* max
* avg
Add custom function to executor:
```php
$executor->addFunction('abs', function($arg) {
return abs($arg);
}, 1);
```
## Operators:
Default operators: `+ - * / ^`
Add custom operator to executor:
MyNamespace/ModulusToken.php:
```php
<?php
namespace MyNamespace;
use NXP\Classes\Token\AbstractOperator;
class ModulusToken extends AbstractOperator
{
/**
* Regex of this operator
* @return string
*/
public static function getRegex()
{
return '\%';
}
/**
* Priority of this operator
* @return int
*/
public function getPriority()
{
return 3;
}
/**
* Associaion of this operator (self::LEFT_ASSOC or self::RIGHT_ASSOC)
* @return string
*/
public function getAssociation()
{
return self::LEFT_ASSOC;
}
/**
* Execution of this operator
* @param InterfaceToken[] $stack Stack of tokens
* @return TokenNumber Result of execution
*/
public function execute(&$stack)
{
$op2 = array_pop($stack);
$op1 = array_pop($stack);
$result = $op1->getValue() % $op2->getValue();
return new TokenNumber($result);
}
}
```
And adding to executor:
```php
$executor->addOperator('MyNamespace\ModulusToken');
```