ceil()
14th January 2021
0 Comments
Programming Language
PHP [Versions: 4, 5, 7]
Syntax
Typical Usage
Rounds fractions up to the nearest whole number.
Accepted Parameters
- value (float) (Required): The float value you wish to round up.
Return Value(s)
Returns a value rounded up to the next highest integer.Notes
- The return value of ceil() is still of type float.
Examples of ceil()
Example 1
<?php
$ceil = ceil(2.1234);
print_r($ceil)
// Output = 2
The above output will be 2.
Example 2
<?php
$ceil = ceil(68.7654);
print_r($ceil)
// Output = 69
The above output will be 69.
Used In Projects
Similar Functions in Other Languages
- Javascript: Math.ceil()
Was This Helpful?
If this post has helped you, please let me know. Your feedback will be highly appreciated and will help me build better content.