Функция со всеми основными bb кодами
function bb_code ($text) {
$text=preg_replace('/\[b\](.+)\[\/b\]/sU' , '<b>\1</b>' , $text);
$text=preg_replace('/\[br\]/sU' , '</br>' , $text);
$text=preg_replace('/\[i\](.+)\[\/i\]/sU' , '<i>\1</i>' , $text);
$text=preg_replace('/\[u\](.+)\[\/u\]/sU' , '<u>\1</u>' , $text);
$text=preg_replace('/\[s\](.+)\[\/s\]/sU' , '<s>\1</s>' , $text);
$text = preg_replace('#\[url=(.*?)\](.*?)\[/url\]#si' , '<a href="\1">\2</a>' , $text);
$text=preg_replace('/\[url\](.+)\[\/url\]/sU' , '<a href="http://\1">\1</a>' , $text);
$text = preg_replace('#\[img=(.*?)\]#si' , '<img src="\1"/>' , $text);
$text = preg_replace('#\[color=(.*?)\](.*?)\[/color\]#si' , '<font color="\1">\2</font>' , $text);
echo $text;
}