3v4l.org

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

preferences:
42.56 ms | 402 KiB | 5 Q