Немного доработанная под себя функция :)
Взято отсюда.
function bb2html($text)
{
$bbcode = array("<", ">",
"[list]", "[*]", "[/*]", "[/list]",
"[img]", "[/img]",
"[b]", "[/b]",
"[u]", "[/u]",
"[i]", "[/i]",
'[color="', "[/color]",
'[size="', "[/size]",
'[url="', "[/url]",
'[url="', '"]',
'[mail="', "[/mail]",
"[code]", "[/code]",
"[quote]", "[/quote]",
"[video]", "[/video]",
'"]');
$htmlcode = array("<", ">",
"<ul>", "<li>", "</li>", "</ul>",
'<img src="', '">',
"<b>", "</b>",
"<u>", "</u>",
"<i>", "</i>",
'<span style="color:', "</span>",
'<span style="font-size:', "</span>",
'<a href="', "</a>",
'<a href="', '">',
'<a href="mailto:', "</a>",
"<code>", "</code>",
"<table width=100% bgcolor=lightgray><tr><td bgcolor=white>", "</td></tr></table>",
'<iframe width="560" height="315" frameborder="0" allowfullscreen src="//www.youtube.com/embed/', '"></iframe>',
'">');
$newtext = str_replace($bbcode, $htmlcode, $text);
$newtext = nl2br($newtext);//second pass
return $newtext;
}
Взято отсюда.
Комментариев нет:
Отправить комментарий