标签: php rounding
是否存在将整数中的所有小数舍入的函数?例如:
1.2 = 2 1.7 = 2
或者是否有可用于计算所有小数的计算?
答案 0 :(得分:2)
ceil() http://docs.php.net/manual/en/function.ceil.php
ceil()
<?php echo ceil(4.3); // 5 echo ceil(9.999); // 10 ?>