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()进行舍入。