3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = "[img]http://www.test.com/abc.jpg[/img]"; $uid = 123; $text = preg_replace_callback( "#\[img]((?:https?|ftps?)://[^\s?&=\#\"<]*?\.(?:jpe?g|gif|png))\[/img]#i", function ($m) use ($uid) { return "[img:$uid]" . $m[1] . "[/img:$uid]"; }, $text ); echo $text;

preferences:
26.12 ms | 404 KiB | 5 Q