phpmyadmin / simple-math
This package is abandoned and no longer maintained.
The author suggests using the symfony/expression-language package instead.
Simple math evaluator
0.2
2016-10-12 16:23 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- phpunit/phpunit: ~5.2 || ~4.8
This package is not auto-updated.
Last update: 2022-02-01 13:02:06 UTC
README
Simple math expression evaluator.
Please note that in most cases it's better to use Symfony ExpressionLanguage Component instead. It performs better and provides more features.
This repository will probably not receive any updates in future.
Features
- Supports basic arithmetic operations
+
,-
,*
,/
,%
- Supports parenthesis
- Supports right associative ternary operator
- Supports comparison operators
==
,!=
,>
,<
,>=
,<=
- Supports basic logical operations
&&
,||
- Supports variables (either PHP style
$a
or simplen
)
The library was developed in order to be able to evaluate Gettext plural equations, but can be used for any mathematical calculations.
Installation
Please use Composer to install:
composer require phpmyadmin/simple-math
Documentation
The API documentation is available at https://develdocs.phpmyadmin.net/simple-math/.
Object API usage
// Create math object $math = new SimpleMath\Math(); // Evaluate expression $value = $math->evaluate('1 + 2'); // Evaluate expression with PHP style variable $math->registerVariable('$a', 4); $value = $math->evaluate('$a + 1'); // Evaluate expression with variable $math->registerVariable('n', 4); $value = $math->evaluate('n + 1'); // Calculate same expression with different values $math = new SimpleMath\Math(); $math->parse('n + 1'); $math->registerVariable('n', 10); $value = $math->run(); $math->registerVariable('n', 100); $value = $math->run();
History
This library is based on Expressions.php gist. It adds some functions, performance improvements and ability to install using Composer.