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