舍入到最接近的十分之一?

时间:2012-11-26 21:44:26

标签: php rounding

  

可能重复:
  Round up to the nearest 50,000 in PHP

我有这个,52.52,我希望它变成52.5。我怎么用PHP做到这一点?我尝试了round()但没有奏效。感谢。

2 个答案:

答案 0 :(得分:7)

round($num, 1);

应该将$ num舍入到最接近的十分之一(第二个参数指定精度,或者应该舍入到小数点后的位数)

答案 1 :(得分:1)

尝试

$x = number_format('52.52', 1)

Documentation is here