bbcode到vbulletin中的html

时间:2011-08-25 15:47:28

标签: php html bbcode vbulletin

vbulletin中将bbcode转换为html的功能是什么?

我发现了这个:convert_wysiwyg_html_to_bbcode()但它将html转换为bbcode,我希望与此函数相反。

2 个答案:

答案 0 :(得分:0)

我最近使用this bb2html parser将日历事件从vBulletin转换为另一个平台。

vBulletin使用课程vB_BbCodeParser进行转换。在旧的vBulletin安装中,即includes/class_bbcode.php

答案 1 :(得分:0)

您可以使用str_replace

将bbcode替换为相应的html标记
function bb2html($text)
{
  $bbcode = array("<", ">",
                "[list]", "[*]", "[/list]", 
                "[img]", "[/img]", 
                "[b]", "[/b]", 
                "[u]", "[/u]", 
                "[i]", "[/i]",
                '[color="', "[/color]",
                "[size=\"", "[/size]",
                '[url="', "[/url]",
                "[mail=\"", "[/mail]",
                "[code]", "[/code]",
                "[quote]", "[/quote]",
                '"]');
  $htmlcode = array("&lt;", "&gt;",
                "<ul>", "<li>", "</ul>", 
                "<img src=\"", "\">", 
                "<b>", "</b>", 
                "<u>", "</u>", 
                "<i>", "</i>",
                "<span style=\"color:", "</span>",
                "<span style=\"font-size:", "</span>",
                '<a href="', "</a>",
                "<a href=\"mailto:", "</a>",
                "<code>", "</code>",
                "<table width=100% bgcolor=lightgray><tr><td bgcolor=white>", "</td></tr></table>",
                '">');
  $newtext = str_replace($bbcode, $htmlcode, $text);
  $newtext = nl2br($newtext);//second pass
  return $newtext;
}