eshumeyko / strcalc
字符串计算器
v0.5
2019-10-07 15:02 UTC
Requires
- php: ^7.1.3
This package is not auto-updated.
Last update: 2024-10-01 15:02:36 UTC
README
String Calculator Symfony4 Bundle
安装
- 安装 symfony4 https://symfony.com.cn/doc/current/setup
- 使用 composer 安装 strcalc
$ composer require eshumeyko/strcalc
用法
...
use eshumeyko\StrcalcBundle\Calculator;
...
$infix = "1 + 2 / 4 - 9 * (1 - 7/3.5)^2";
$calculator = new Calculator();
$result = $calculator->calc($infix);
// -7.5
...