SMF [img] bbcode为html

时间:2013-04-07 15:07:33

标签: php bbcode smf

我想将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);

1 个答案:

答案 0 :(得分:0)

你的外卡贪婪。使用.*?代替.*