3v4l.org

run code in 300+ PHP versions simultaneously
<?php function convert_ascii($string) { // Replace Single Curly Quotes $search[] = chr(226).chr(128).chr(152); $replace[] = "'"; $search[] = chr(226).chr(128).chr(153); $replace[] = "'"; // Replace Smart Double Curly Quotes $search[] = chr(226).chr(128).chr(156); $replace[] = '"'; $search[] = chr(226).chr(128).chr(157); $replace[] = '"'; // Replace En Dash $search[] = chr(226).chr(128).chr(147); $replace[] = '--'; // Replace Em Dash $search[] = chr(226).chr(128).chr(148); $replace[] = '---'; // Replace Bullet $search[] = chr(226).chr(128).chr(162); $replace[] = '*'; // Replace Middle Dot $search[] = chr(194).chr(183); $replace[] = '*'; // Replace Ellipsis with three consecutive dots $search[] = chr(226).chr(128).chr(166); $replace[] = '...'; // Apply Replacements $string = str_replace($search, $replace, $string); // Remove any non-ASCII Characters $string = preg_replace("/[^\x01-\x7F]/","", $string); return $string; } $s = "Turn\u00a0things up with an invigorating concoction at Harry's!\u00a0Made using seven different spirits and topped with a can of redbull, get the exclusive Red Bull Trash Can at $18, or flash your Harry's SG App virtual membership card to enjoy it at $16.\u00a0\u00a0\u00a0Terms and conditionsPrices quoted are subject to prevailing government taxes and service charge.\u00a0Promotion is available till 4 September 2016 at all Harry's outlets except for Harry's Shenton Way and the ones within Changi Airport.\u00a0Harry'"; echo convert_ascii($s);
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Turn\u00a0things up with an invigorating concoction at Harry's!\u00a0Made using seven different spirits and topped with a can of redbull, get the exclusive Red Bull Trash Can at $18, or flash your Harry's SG App virtual membership card to enjoy it at $16.\u00a0\u00a0\u00a0Terms and conditionsPrices quoted are subject to prevailing government taxes and service charge.\u00a0Promotion is available till 4 September 2016 at all Harry's outlets except for Harry's Shenton Way and the ones within Changi Airport.\u00a0Harry'
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Turn\u00a0things up with an invigorating concoction at Harry's!\u00a0Made using seven different spirits and topped with a can of redbull, get the exclusive Red Bull Trash Can at $18, or flash your Harry's SG App virtual membership card to enjoy it at $16.\u00a0\u00a0\u00a0Terms and conditionsPrices quoted are subject to prevailing government taxes and service charge.\u00a0Promotion is available till 4 September 2016 at all Harry's outlets except for Harry's Shenton Way and the ones within Changi Airport.\u00a0Harry'

preferences:
240.68 ms | 403 KiB | 291 Q