Aquí esta el codigo:
Código PHP:
<?php
function bbcode($texto)
{
$texto = str_replace("<", "<", $texto);
$texto = str_replace(">", ">", $texto);
$texto = preg_replace("/\[b\](.*?)\[\/b\]/s","<b>$1</b>",$texto);
$texto = preg_replace("/\[u\](.*?)\[\/u\]/s","<u>$1</u>",$texto);
$texto = preg_replace("/\[i\](.*?)\[\/i\]/s","<i>$1</i>",$texto);
$texto = preg_replace("/\[code\](.+?)\[\/code\]/s", "<table class=\"code\" cellpadding=\"5\" cellspacing=\"0\" width=\"90%\"><tr><td><p><b>Codigo:</b><br /><code>$1</code></p></td></tr></table>", $texto);
return $texto;
}
?>