我想将 SMF 的 [img] bbcode 转换为 HTML,它看起来像这样:
[img width=600 height=300]url[/img]
我的脚本是这样的,但不起作用,怎么了?
$text = preg_replace("/\[img width=(.*) height=(.*)\](.*)\[\/img\]/Usi", "<img src=\"\\3\" class=\"image\" style=\"width:\\1; height:\\2\" />", $text);