4 function html2bbcode($s) {
9 '/\<b\>(.*?)\<\/b\>/is',
10 '/\<i\>(.*?)\<\/i\>/is',
11 '/\<u\>(.*?)\<\/u\>/is',
12 '/\<ul\>(.*?)\<\/ul\>/is',
13 '/\<li\>(.*?)\<\/li\>/is',
14 '/\<img(.*?) src=\"(.*?)\" (.*?)\>/is',
15 '/\<div(.*?)\>(.*?)\<\/div\>/is',
17 '/\<strong\>(.*?)\<\/strong\>/is',
18 '/\<a href=\"(.*?)\"(.*?)\>(.*?)\<\/a\>/is',
19 '/\<code\>(.*?)\<\/code\>/is',
20 '/\<font color=(.*?)\>(.*?)\<\/font\>/is',
21 '/\<font color=\"(.*?)\"\>(.*?)\<\/font\>/is',
22 '/\<blockquote\>(.*?)\<\/blockquote\>/is',
39 '[color="$1"]$2[/color]',
40 '[color="$1"]$2[/color]',
44 // Replace $htmltags in $text with $bbtags
45 $text = preg_replace ($htmltags, $bbtags, $s);
47 // Strip all other HTML tags
48 $text = strip_tags($text);