Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定为什么会这样,但是在我的本地主机上,我不确定它是 PHP 还是 Apache,但是当我有一个类似的数字时123.45,floatval("123.45")我最终得到了123.4500000000234813423...我可以做一个sprintf来显示正确的值,但最终结果需要是floator int,基本上是一个数字。
123.45
floatval("123.45")
123.4500000000234813423...
sprintf
float
int
这是浮点问题。
使用number_format或显示sprintf正确的值。
number_format
PHP 文档: