Answers for "php round edge case"

PHP
8

php round down

// round down
echo floor(1.5); // prints 1

// round up
echo ceil(1.5); // prints 2
Posted by: Guest on May-30-2021
0

php round to the nearest 10

$number = ceil($input / 10) * 10;
Posted by: Guest on July-21-2021
0

php round up

echo ceil(4.3);    // 5
echo ceil(9.999);  // 10
echo ceil(-3.14);  // -3
Posted by: Guest on June-28-2021
0

php round function syntax

float round($number, $precision, $mode);
Posted by: Guest on December-30-2021

Browse Popular Code Answers by Language