3v4l.org

run code in 300+ PHP versions simultaneously
<?php $separator = 'comma'; $number = '1,233,332.34'; $thousand_separator = ','; if ($separator != 'comma') { $thousand_separator = '.'; } // Remove the thousand separator $number = str_replace($thousand_separator, '', $number); echo number_format($number, 2, ',','.');

preferences:
30.61 ms | 402 KiB | 5 Q