Returns the next highest integer value by rounding up the argument provided.
PHP
echo ceil(4.1); // => 5
Ruby
puts 4.1.ceil; # => 5