Published
- 1 min read
php parse float 2 decimal places
The solution for this is noted below
php parse float 2 decimal places
Solution
$num = 5;
$num = number_format($num, 2);
Try other methods by searching on the site. That is if this doesn’t work