Core Function Ceiling
From Sputnik Wiki
				
				
				(Difference between revisions)
				
																
				
				
								
				| Line 9: | Line 9: | ||
=== Parameters ===  | === Parameters ===  | ||
| − | === expression ===  | + | ==== expression ====  | 
Any valid numeric expression.  | Any valid numeric expression.  | ||
| Line 19: | Line 19: | ||
Failure: Returns 0.  | Failure: Returns 0.  | ||
| − | ===  | + | === Example ===  | 
<syntaxhighlight lang="sputnik">  | <syntaxhighlight lang="sputnik">  | ||
Revision as of 15:54, 2 December 2011
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