Answers for "convert to two decimal float php"

PHP
3

php float 2 decimais

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

php float to number format 2

100,000
100,000.00
100,000.000
100.000,00
Posted by: Guest on March-30-2021

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

Browse Popular Code Answers by Language