我正在研究少数小数点,例如 0.0000687、0.0000063241、0.0000454。我使用 BCMath 来获得最精确的结果,因为它涉及货币计算,到目前为止,BCMath 对我修复我之前遇到的错误非常有帮助。但是我发现如果将PHP自动转换的指数值传递给BCMath,BCMath就不能正常工作。下面是示例代码:
$x = 0.00002123; // let say I got this value from the other computation;
// this $x value will automatically turn to exponential
// value by php because it have few of leading 0 after the '.'
PHP 开始将其实数转换为指数数的模式是:(见下图)
从上图可以看出,PHP 开始将实数转换为指数的模式是当前导 0 数为 4 次 -> 0.0000xxxxx 时(PHP 开始转换为指数的模式)。
然后,假设这个变量 $x 将被计算为 PHP BCMath 函数之一:
# First, I work with float number
$calculation1 = bcadd($x,5,12); // adding variable $x to 5
$calculation2 = bcmul($x,4,12); // multiply variable $x to 4
$calculation3 = bcdiv($x,5,12); // divide variable $x to 5
# Second, I tried to work with string number
$y = (string) $x;
$calculation4 = bcadd($y,5,12);
$calculation5 = bcmul($y,4,12);
$calculation6 = bcmul($y,4,12);
结果是错误的,这里是变量 $x 的屏幕截图:
这里的结果是错误的,这里是变量 $y 的屏幕截图(首先传递给字符串,因为 BCMath 可以很好地处理字符串):
重要提示:
- 所以事实证明 BCMath 在使用指数值时存在问题,我无法避免这个指数值,因为 PHP 会在达到其模式时自动将其解析为指数数(可以参见我上面附加的图像)。
- 考虑到变量 $x 我从不同的计算中得到的位置,所以在实际代码中,我不能真正将它硬编码为我想要的方式。