3v4l.org

run code in 300+ PHP versions simultaneously
<?php $pattern = '#\d+#'; $haystack = '0123 456 789'; echo preg_replace_callback($pattern, 'add_three', $haystack); function add_three($matches){ return '-'.$matches[0].'-'; }

preferences:
52.05 ms | 402 KiB | 5 Q