3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = 'My Name ## is "#P_NAM3#" and \r\n I am \'#P_AG2#\' years old `#abc#`'; $r = '#([^#]*)#'; //$r = '#(?P<name>.*?)#'; //$r = '#(\w*)#'; //preg_match_all('/'.$r.'/m', $text, $m); //var_dump($m); function trad($v) { if($v == '' || $v == 'abc') return $v . '_es'; return $v; } echo preg_replace_callback('/'.$r.'/m', 'trad', $text);

preferences:
34.69 ms | 402 KiB | 5 Q