',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'\2',
'\1',
'
',
'\2',
'\1',
'\1'
);
/**
* This function converts bbcode to (x)HTML tags.
*
* @param string Text that will be parsed.
* @return string
*/
public function bbc2html($subject){
$subject = preg_replace($this->patterns, $this->replacements, $subject);
return $subject;
}
}
?>