A function common to many programming languages that returns the next integer value by rounding the value up if necessary.
Returns the next highest integer value by rounding up value if necessary. php.net
Examples
echo ceil(1.3); // returns 2
echo ceil(10.9); // returns 11
echo ceil(-3.14); // returns -3