Answers for "show roundoff value upto 2 decimal places in 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

Code answers related to "show roundoff value upto 2 decimal places in php"

Browse Popular Code Answers by Language