I have this string :
000000000000100
and need to convert it to:
1,00
So, the rules are:
From the PHP Manual page on number_format
:
string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )
If you want numbers like 123456
be formatted as 1234,45
, use:
echo number_format($number / 100, 2, ",", "");
If you need a dot as thousands separator (1.234,56
):
echo number_format($number / 100, 2, ",", ".");
The zeros are automatically removed by PHP when converting the string to a number.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With