Code: Alles auswählen
Zen[b][/b]siert
Code: Alles auswählen
Zen[b][/b]siert
Code: Alles auswählen
[b][/b]
Code: Alles auswählen
function bbencode_first_pass($text, $uid)
{
// pad it with a space so we can distinguish between FALSE and matching the 1st char (index 0).
// This is important; bbencode_quote(), bbencode_list(), and bbencode_code() all depend on it.
$text = " " . $text;
Code: Alles auswählen
$text = str_replace('[b][/b]','',$text);
$text = str_replace('[i][/i]','',$text);
$text = str_replace('[u][/u]','',$text);
$text = str_replace('[B][/B]','',$text);
$text = str_replace('[I][/I]','',$text);
$text = str_replace('[U][/U]','',$text);
$text = preg_replace('#\[img\]\[/img\]#is','',$text);
$text = preg_replace('#\[url\]\[/url\]#is','',$text);
$text = preg_replace('#\[color(=\#?[A-Z0-9]+)?\]\[/color\]#is','',$text);
$text = preg_replace('#\[size(=[0-9]+)?\]\[/size\]#is','',$text);