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[1] == '' || $v[1] == 'abc') return $v[1] . '_es'; return $v[1]; } echo preg_replace_callback('/'.$r.'/m', 'trad', $text);

preferences:
65.18 ms | 402 KiB | 5 Q