denissimon/formula-parser
Composer 安装命令:
composer require denissimon/formula-parser
包简介
Parsing and evaluating mathematical formulas given as strings.
README 文档
README
Formula Parser is a library for parsing and evaluating mathematical formulas given as strings.
Supports:
- Operators: +, -, *, /, ^
- Variables: x, y, z, a, b
- Numbers with decimal point '.'
- Numbers in E notation
- Constants: pi, e, Inf
- Functions: sqrt, abs, sin, cos, tan, log, exp
- Unlimited nested parentheses
- NaN (Not a Number)
Installation
Requires PHP 5.4 or higher.
To install with Composer:
composer require denissimon/formula-parser
Usage
require_once __DIR__ . '/vendor/autoload.php'; use FormulaParser\FormulaParser; $formula = '3*x^2 - 4*y + 3/y'; $precision = 2; // Number of digits after the decimal point try { $parser = new FormulaParser($formula, $precision); $parser->setVariables(['x' => -4, 'y' => 8]); $result = $parser->getResult(); // [0 => 'done', 1 => 16.38] } catch (\Exception $e) { echo $e->getMessage(), "\n"; }
The $precision parameter has a default of 4, and it's not required to specify:
$parser = new FormulaParser('3+4*2/(1-5)^8'); $result = $parser->getResult(); // [0 => 'done', 1 => 3.0001]
The initialized object $parser has the following methods:
setValidVariables($array) Overwrites default valid variables.
setVariables($array) Sets variables.
getResult() Returns an array [0 => v1, 1 => v2], where v1 is 'done' or 'error', and v2 is a computed result or validation error message, respectively.
getFormula() Returns the text of the formula passed to the constructor.
More usage examples can be found in tests/FormulaParserTest.php
License
Licensed under the MIT license
denissimon/formula-parser 适用场景与选型建议
denissimon/formula-parser 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 331.06k 次下载、GitHub Stars 达 80, 最近一次更新时间为 2015 年 09 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「parser」 「math」 「parsing」 「formula」 「expression」 「Evaluation」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 denissimon/formula-parser 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 denissimon/formula-parser 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 denissimon/formula-parser 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LaTeX formula to PNG
A port of the PEAR Net_HL7 library to PHP5.3+
Easy to use SDK with grabber for multiple platforms at once like YouTube, Dailymotion, Facebook and more.
An MT940 bank statement parser for PHP
Partition problem for balanced arrays splitting made easy.
Simple, chainable calculation library.
统计信息
- 总下载量: 331.06k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 81
- 点击次数: 29
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-12