|
本文实例讲述了php实现过滤UBB代码的类。分享给大家供大家参考。具体如下:
PHP代码如下:
[U]复制代码[/U] 代码如下:class Day{
function ubb($Text) { /// UBB代码转换
//$Text=htmlspecialchars($Text);
//$Text=ereg_replace("\r\n","
",$Text);
$Text=ereg_replace("\[br\]","
",$Text);
$Text=nl2br($Text);
$Text=stripslashes($Text);
$Text=preg_replace("/\\t/is"," ",$Text);
$Text=preg_replace("/\[url\](http:\/\/.+?)\[\/url\]/is","[url=]\\1[/url]",$Text);
$Text=preg_replace("/\[url\](.+?)\[\/url\]/is","[url=]\\1[/url]",$Text);
$Text=preg_replace("/\(.+?)\[\/url\]/is","[url=]\\2",$Text);
$Text=preg_replace("/\(.+?)\[\/url\]/is","[url=]\\2",$Text);
$Text=preg_replace("/\[color=(.+?)\](.+?)\[\/color\]/is","
[color=]\\2
",$Text);
$Text=preg_replace("/\(.+?)\[\/font\]/is","\\2",$Text);
$Text=preg_replace("/\[email=(.+?)\](.+?)\[\/email\]/is","[url=]\\2[/url]",$Text);
$Text=preg_replace("/\[email\](.+?)\[\/email\]/is","[url=]\\1[/url]",$Text);
$Text=preg_replace("/\[i\](.+?)\[\/i\]/is","\\1",$Text);
$Text=preg_replace("/\[u\](.+?)\[\/u\]/is","\\1",$Text);
$Text=preg_replace("/\[b\](.+?)\[\/b\]/is","\\1",$Text);
$Text=preg_replace("/\[fly\](.+?)\[\/fly\]/is","\\1",$Text);
$Text=preg_replace("/\[move\](.+?)\[\/move\]/is","\\1",$Text);
$Text=preg_replace("/\[shadow=([#0-9a-z]{1,10})\,([0-9]{1,3})\,([0-9]{1,2})\](.+?)\[\/shadow\]/is","",$Text);
return $Text;
}
}
希望本文所述对大家的php程序设计有所帮助。
您可能感兴趣的文章:PHP 数据结构 算法描述 冒泡排序 bubble sortphp UBB 解析实现代码php Ubb代码编辑器函数代码php实现图片转换成ASCII码的方法php实现二进制和文本相互转换的方法php实现将wav文件转换成图像文件并在页面中显示的方法php转换颜色为其反色的方法php实现转换ubb代码的方法
|
|