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.
我需要将任何非整数四舍五入到最接近的整数,无论小数点后的数字是否> 5。
您可以利用ceil($value)PHP 中的函数进行四舍五入。
ceil($value)
同样,您可以使用floor()for 向下舍入。
floor()