Answers for "float to two decimal places php"

PHP
5

php parse float 2 decimal places

$num = 5;
$num = number_format($num, 2);
Posted by: Guest on June-18-2021
2

two digits after decimal point in php

echo round(520.34345, 2);   // 520.34
echo round(520.3, 2);       // 520.3
echo round(520, 2);         // 520
Posted by: Guest on May-31-2021

Code answers related to "float to two decimal places php"

Browse Popular Code Answers by Language