Simple math expresions parser and calculator
Find a file
2016-04-01 14:52:34 +01:00
src/NXP Specifically check for 0 in division to allow for negative operations 2016-04-01 14:52:34 +01:00
tests + Tests for scientific notation by AntonStoeckl 2013-09-06 16:43:45 +04:00
.gitignore Initial commit 2013-03-14 04:27:37 +04:00
.travis.yml Fix to PSR standart, fix tokenizer, fix function executor. 2013-08-03 13:47:47 +03:00
composer.json Fix to PSR standart, fix tokenizer, fix function executor. 2013-08-03 13:47:47 +03:00
LICENSE Fix to PSR standart, fix tokenizer, fix function executor. 2013-08-03 13:47:47 +03:00
phpunit.xml.dist Fix to PSR standart, fix tokenizer, fix function executor. 2013-08-03 13:47:47 +03:00
README.md add waffle.io badge 2015-09-29 06:42:26 -06:00

Stories in Ready

MathExecutor

Build Status

Simple math expressions calculator

Install via Composer

All instructions to install here: https://packagist.org/packages/nxp/math-executor

Sample usage:

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:

$executor->addFunction('abs', function($arg) {
    return abs($arg);
}, 1);

Operators:

Default operators: + - * / ^

Add custom operator to executor:

MyNamespace/ModulusToken.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:

$executor->addOperator('MyNamespace\ModulusToken');

Variables:

Default variables:

$pi = 3.14159265359
$e = 2.71828182846

You can add own variable to executor:

$executor->setVars(array(
    'var1' => 0.15,
    'var2' => 0.22
));

$executor->execute("$var1 + $var2");