标签: php
$a =99.99999; echo $f = sprintf ("%.2f", $a);
输出值为100.00
100.00
但我需要99.99
99.99
任何人都可以帮忙吗
答案 0 :(得分:3)
http://3v4l.org/LdHLA
echo intval((99.99999*100))/100;
从这里采取:
How to make number_format() not to round numbers up
答案 1 :(得分:-1)
使用以下代码,您将需要一个
echo number_format($a,2);