PHP加减运算,结果不准确

发布于 2024-11-15 15:53:49 字数 124 浏览 2 评论 0原文

<代码>

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜清冷一曲。 2024-11-22 15:53:49

空间有限的小数浮点不准确对于某些值(就像在十进制表示法中,您无法在有限空间中写出 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.

乙白 2024-11-22 15:53:49

如果您想要精确计算(即货币交易),您应该使用 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.

意中人 2024-11-22 15:53:49

这里有一些具体的例子 http://www.php.net/manual/en/ ref.bc.php

<?php

$a = 199.8;
$b = 0.9;
$c = 200.7;

// set precision
bcscale(1);

$ab = bcadd($a, $b);
echo bcsub($ab, $c); // result 0.0

?>

在 Debian Squeeze 上使用 PHP 5.3.3-7+squeeze1 进行测试

Here some exact example with http://www.php.net/manual/en/ref.bc.php:

<?php

$a = 199.8;
$b = 0.9;
$c = 200.7;

// set precision
bcscale(1);

$ab = bcadd($a, $b);
echo bcsub($ab, $c); // result 0.0

?>

Tested with PHP 5.3.3-7+squeeze1 on Debian Squeeze

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文