如何在PHP中对数字进行舍入?

时间:2022-02-05 18:18:18

I need to round any non-integers up to the nearest integer, regardless of whether the number after the decimal place is >5 or not.

无论小数位后的数字是否大于5,我都需要将任何非整数舍入到最接近的整数。

1 个解决方案

#1


11  

You can make use of the ceil($value) function in PHP to round up.

您可以使用PHP中的ceil($ value)函数进行舍入。

Similarly you can make use of floor() for rounding down.

同样,您可以使用floor()进行舍入。

#1


11  

You can make use of the ceil($value) function in PHP to round up.

您可以使用PHP中的ceil($ value)函数进行舍入。

Similarly you can make use of floor() for rounding down.

同样,您可以使用floor()进行舍入。