I'm trying to make it so that any html or bbcode inside the [ code ] tag isn't parsed. here's what I've got: (it doesn't work. stuff inside the [ code ] tag still gets treated like normal.)
<?php
function parse_bbcode($input)
{
$bb_replace = array(
'/\[img\](.*?)\[\/img\]/is',
'/\[b\](.*?)\[\/b\]/is',
'/\[i\](.*?)\[\/i\]/is',
'/\[u\](.*?)\[\/u\]/is',
'/\[url\=(.*?)\](.*?)\[\/url\]/is',
'/\[url_blank\=(.*?)\](.*?)\[\/url_blank\]/is',
'/\[textarea\](.*?)\[\/textarea\]/is',
'/\[url\](.*?)\[\/url\]/is',
'/\[url_blank\](.*?)\[\/url_blank\]/is',
'/\[quote\=(.*?)\](.*?)\[\/quote\]/is',
'/\[quote\](.*?)\[\/quote\]/is',
'/\[code\](.*?)\[\/code\]/is',
'/\[color\=(.*?)\](.*?)\[\/color\]/is',
'/\[size\=(.*?)\](.*?)\[\/size\]/is'
);
$bb_replacements = array(
'<img src="$1" alt="$1" />',
'<span style="font-weight: bold;">$1</span>',
'<span style="font-style: italic;">$1</span>',
'<span style="text-decoration: underline;">$1</span>',
'<a href="$1">$2</a>',
'<a href="$1" target="_blank">$2</a>',
'<textarea>$1</textarea>',
'<a href="$1">$1</a>',
'<a href="$1" target="_blank">$1</a>',
'<span class="quote">$1 said:<span>$2</span></span>',
'<span class="quote">quote:<span>$1</span></span>',
'<code>' . str_replace(array("[","]"),array("[","]"),htmlspecialchars('$1')) . '</code>',
'<span style="color:$1;">$2</span>',
'<span style="font-size:$1;">$2</span>'
);
return preg_replace($bb_replace,$bb_replacements,$input);
}
?>