Core Function Ceiling
From Sputnik Wiki
(Difference between revisions)
m (1 revision) |
|
(One intermediate revision by one user not shown) |
Latest revision as of 12:38, 14 June 2015
Ceiling( <expression> )
Contents |
Description
Returns a number rounded up to the next integer.
Parameters
expression
Any valid numeric expression.
Return Value
Success: Returns the smallest integer greater than or equal to the specified value.
Failure: Returns 0.
Example
$x = Ceiling(5.25); printf($x); // Prints 6