Answers for "how to round value in php"

PHP
4

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
2

php round decimal

$value = 1.23456789;
$rounded_value = round($value, 2); 
// 2 is the precision here we will get 1.23
Posted by: Guest on April-01-2020
3

php round up

//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
Posted by: Guest on June-09-2020

Browse Popular Code Answers by Language