zircote / expressive
There is no license information available for the latest version (dev-master) of this package.
A PHP textual expression parser, parses strings for mathematical expressions and returns the result
dev-master
2013-12-17 01:37 UTC
This package is not auto-updated.
Last update: 2024-10-26 13:50:30 UTC
README
A PHP expression parser. This tool was largely inspired by snips of code I came across on the web while looking for some form of an expression DSL. The approach inspired me enough to feel it deserved sharing. Unfortunately these snippets had no name associated with them and I am therefor unable to attribute the inspirative work to its inceptor.
Use:
Inline PHP
<?php $expression = new \Expressive\Parser('(2+2)*sqrt(4)'); echo $expression; // 8
CLI:
this is intended more as an example use
> bin/expr
math > (2+2)*sqrt(4)
8
math > exit
>
Supported Operations:
+
addition2+2
-
substraction4-2
/
division4/2
*
multiplication2*2
^
exponential2^2
sin
sinesin(60)
cos
cosinecos(90)
tan
tangenttan(45)
sqrt
square rootsqrt(4)
exp
exponentexp(12)