How do I round up a number?
<?php
$value = 25.01;
echo ceil($value);
?>
This will print 26.
Comment on this Question and Answer >>>
ASK A QUESTION
More numbers PHP Questions
How do I round down a number?How do I generate a random number?
How do I force a value to be treated as a number?
How do I work out the remainder of a division?
How do I format a number with commas like a monetary value?
