thelia/math-tools
最新稳定版本:1.0.2
Composer 安装命令:
composer require thelia/math-tools
包简介
Number management library
README 文档
README
This library includes some tools for math operations.
Number
Here's an example of rounding problems solved by this lib:
$price = new Number('3.99'); $price->divide('1.2'); echo $price->getNumber(); // 3.33 $price->multiply('1.2'); echo $price->getNumber(); // 3.99, where most of time libs returns 4.00
GCD
This tool computes the GCD of two numbers.
echo GCD::getGCD(10,5); // 5 echo GCD::getGCD(10,10); // 10 echo GCD::getGCD(20,10); // 10 echo GCD::getGCD(11,10); // 1
统计信息
- 总下载量: 95.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: LGPL
- 更新时间: 2014-11-07