Home >Backend Development >PHP Tutorial >php int处理的异常,如何解释

php int处理的异常,如何解释

PHPz
PHPzOriginal
2016-06-06 20:07:091145browse

如下代码

$qty = 50.852;
echo (int) ($qty * 10000);

// 期望结果:508520
// 实际结果:508519

以上问题如何解释?并且如何处理会得到期望结果?

回复内容:

如下代码

$qty = 50.852;
echo (int) ($qty * 10000);

// 期望结果:508520
// 实际结果:508519

以上问题如何解释?并且如何处理会得到期望结果?

原来的答案不对,删除,补充题目相关内容如下:

$qty = 50.852;
echo $qty * 10000; //508520
echo (int) ($qty * 10000); //508519
echo round($qty * 10000); //508520
echo (int)($qty * 100000); //5085200
echo (int)($qty * 1000); //50852
echo (int)(508520); //508520
echo (int)50.852; //50

点击这里
你可以看下鸟哥对于浮点数的解释。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn