Code: Select all
<?php
// Convert a string with bbcode to html
function bbToHtml($str)
{
$bbcode = array(
'/\\[b\\]/i', '/\\[\/b\\]/i',
'/\\[i\\]/i', '/\\[\/i\\]/i',
'/\\[u\\]/i', '/\\[\/u\\]/i',
'/\[url\=(.*?)\](.*?)\[\/url\]/is');
$htmlcode = array(
'<b>', '</b>',
'<i>', '</i>',
'<u>', '</u>',
'<a href="$1">$2</a>');
$str = preg_replace($bbcode, $htmlcode, $str);
return $str;
}
?>Code: Select all
$myString = "[b][i][/i][/b]";
echo bbToHtml ($myString);
Hello World
Ofcourse you can change $myString to something you fetched from example a database