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 中向上舍入到最接近的 50,000
我有这个,52.52,我希望它变成 52.5。我将如何在 PHP 中做到这一点?我试过 round() 但没有用。谢谢。
round($num, 1);
应该将 $num 舍入到最接近的十分之一(第二个参数指定精度,或者它应该舍入到的小数点后的位数)
尝试
$x = number_format('52.52', 1)
文档在这里