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 进行一些计算,得到的数字看起来像 0.20758605003357。
我如何四舍五入,所以在这种情况下输出为 0.21。或者更一般地,这样数字,无论它是什么,都四舍五入到百分之一。
使用 PHP 的round函数:
round
echo round($number, 2);
见:http ://www.php.net/manual/en/function.round.php
number_format($number,2);
第二个参数是小数点后的位数。
此外,还有 money_format (如果你想要四舍五入的话)。美元:
money_format('%i',$number);