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:
39.49 ms | 402 KiB | 5 Q