View Single Post
Old 12-01-2005, 02:13 AM   PM User | #1
polearm
New to the CF scene

 
Join Date: Nov 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
polearm is an unknown quantity at this point
BBcode with Regular Expressions

PHP Code:
<?php
function bbcode_html($input) {
$bbcode = array(
'/\[b\](.+?)\[\/b\]/i',
'/\[i\](.+?)\[\/i\]/i',
'/\[quote\](.+?)\[\/quote\]/i',
'/\[url=(.+?)\](.+?)\[\/url\]/i'
);

$html = array(
'<strong>$1</strong>',
'<em>$1</em>',
'<blockquote>$1</blockquote>',
'<a href="$1">$2</a>'
);

return 
preg_replace($bbcode$html$input);
}
?>
polearm is offline   Reply With Quote