3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = '[img width=600 height=300]url[/img]'; // here-------------------v // v echo preg_replace("/\[img width=(.*) height=(.*)\](.*)\[\/img\]/Usi", "<img src=\"\\3\" class=\"image\" style=\"width:\\1; height:\\2\" />", $text); echo "\n---\n"; echo preg_replace("/\[img width=(.*) height=(.*)\](.*)\[\/img\]/Usi", "<img src=\"\\3\" class=\"image\" style=\"width:\\1; height:\\2\" />", $text); echo "\n---\n"; echo preg_replace("/\[img width=(.*) height=(.*)\](.*)\[\/img\]/Usi", "<img src=\"$3\" class=\"image\" style=\"width:$1; height:$2\" />", $text);

preferences:
100.12 ms | 1520 KiB | 5 Q