You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/php/Math/PHP script which rounds the...

5 lines
180 B
PHTML

5 years ago
<?php
echo round( 1.65, 1, PHP_ROUND_HALF_UP)."\n"; // 1.7
echo round( 1.65, 1, PHP_ROUND_HALF_DOWN)."\n"; // 1.6
echo round(-1.54, 1, PHP_ROUND_HALF_EVEN)."\n"; // -1.5
?>