计算大于指定数的最小整数。
语法: int ceil(float number);
返回值: 整数
函数种类: 数学运算
本函数用来计算比浮点参数 number 大的最小整数。
本例返回值为 4。<?php$nextint=ceil(3.14);echo $nextint;?>
Floor() round()