3v4l.org

run code in 300+ PHP versions simultaneously
<?php function replace_spaces ($text) { function replacement ($matches) { return str_replace ($matches[1], ' ', '&nbsp;').' '; } return preg_replace_callback ('/( +) /', 'replacement', $text); } echo replace_spaces('hello world'); echo replacement(array('one','two','three'));

preferences:
37.38 ms | 402 KiB | 5 Q