Answers for "how to round integers with php"

PHP
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
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

Code answers related to "how to round integers with php"

Browse Popular Code Answers by Language