PHP加减运算,结果不准确
<代码>
在 PHP 版本 5.3.2-1 ubuntu4.7 上测试
<?php
echo 199.8 + 0.9 -200.7; //expect 0, result 2.8421709430404E-14 ?
?>
Tested on PHP Version 5.3.2-1 ubuntu4.7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
空间有限的小数浮点不准确对于某些值(就像在十进制表示法中,您无法在有限空间中写出
1/3
一样)。2.8421709430404E-14
非常接近0。将其四舍五入,或输出到一定数量的有效数字。
Space-limited, fractional floating point is inaccurate for some values (just in the same way that, in decimal notation, you cannot write out
1/3
in finite space).2.8421709430404E-14
is very close to 0.Round it, or output it to a certain number of significant figures.
如果您想要精确计算(即货币交易),您应该使用 BCD(二进制编码小数)或任意精度数学。 PHP 使用 BC Math 对此提供支持。
If you want exact calculations (ie. for monetary transactions) you should use BCD (binary coded decimals) or arbitrary precision math. PHP has support for this using BC Math.
这里有一些具体的例子 http://www.php.net/manual/en/ ref.bc.php:
在 Debian Squeeze 上使用 PHP 5.3.3-7+squeeze1 进行测试
Here some exact example with http://www.php.net/manual/en/ref.bc.php:
Tested with PHP 5.3.3-7+squeeze1 on Debian Squeeze