thelia/math-tools

数字管理库

1.0.2 2015-11-05 15:52 UTC

This package is auto-updated.

Last update: 2024-09-14 21:31:21 UTC


README

这个库包含了一些数学操作的工具。

Build Status License Scrutinizer Quality Score

数字

以下是通过这个库解决四舍五入问题的一个示例

$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

最大公约数

这个工具计算两个数的最大公约数。

echo GCD::getGCD(10,5); // 5
echo GCD::getGCD(10,10); // 10
echo GCD::getGCD(20,10); // 10
echo GCD::getGCD(11,10); // 1