2 Dezimalrunde mit PHP
// using round() function we can roundoff float values in php
$value = 58.24365;
round($value, 2);
//result 58.24
Ankur
// using round() function we can roundoff float values in php
$value = 58.24365;
round($value, 2);
//result 58.24
round(520.34345, 2); // 520.34
$value = 520.34345;
return($value,2);
//520.34
$value = 520.34345;
return round($value,2);
//520.34