Answers for "php set decimal to 2 floating point"

PHP
5

php parse float 2 decimal places

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

php float 2 decimais

$foo = "105";
echo number_format((float)$foo, 2, '.', '');
Posted by: Guest on June-18-2020

Code answers related to "php set decimal to 2 floating point"

Browse Popular Code Answers by Language