Update README.md

This commit is contained in:
Lico San
2019-06-17 13:44:15 +02:00
committed by GitHub
parent ef606946b5
commit 070c44c699
+6 -6
View File
@@ -3,12 +3,12 @@
If you need to evaluate a formula with basic operators and variables, and If you need to evaluate a formula with basic operators and variables, and
* *No eval:* You dont want to use EVAL for obvious security reasons, * **No eval:** You dont want to use EVAL for obvious security reasons,
* *No dependancies:* You don't want to rely on half the internet as dependancies, but prefer a single self-contained class, * **No dependancies:** You don't want to rely on half the internet as dependancies, but prefer a single self-contained class,
* *Old PHP OK:* You don't necessarily have the latest PHP version, or Composer, * **Old PHP OK:** You don't necessarily have the latest PHP version, or Composer,
* *No spaghetti:* You want something readable that you could easily understand and customize, * **No spaghetti:** You want something readable that you could easily understand and customize,
* *Arithmetic rules OK:* You need something that knows about operators priority, unary operators, and parenthesis, * **Arithmetic rules OK:** You need something that knows about operators priority, unary operators, and parenthesis,
* *Recursive eval:* You want to be able to include sub-formulas inside your variables, * **Recursive eval:** You want to be able to include sub-formulas inside your variables,
...then you might like Formula1 ! ;-) ...then you might like Formula1 ! ;-)