blob: 474a47d87841c8931d4ccbbef380cde0e4e9e30b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# NXP MathExecutor
Simple math expressions calculator
## Sample usage:
<?php
require "vendor/autoload.php";
$calculator = new \NXP\MathExecutor();
print $calculator->execute("1 + 2 * (2 - (4+10))^2");
|