float ceil ( float $value )
ceil() rounds fractions up
※ available F/W version : all
Returns the next highest integer value by rounding up value if necessary
<?php
$val = 3.14;
$ret = ceil($val);
echo "ret = $ret\r\n"; // OUTPUT: ret = 4
?>
This function is identical to the PHP group’s ceil() function.