3v4l.org

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

preferences:
39.22 ms | 402 KiB | 5 Q