时时商务社区
标题:
php实现过滤UBB代码的类
[打印本页]
作者:
wx_pylelnL4
时间:
2018-2-14 05:48
本文实例讲述了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","
\\4
",$Text);
return $Text;
}
}
希望本文所述对大家的php程序设计有所帮助。
您可能感兴趣的文章:
PHP 数据结构 算法描述 冒泡排序 bubble sort
php UBB 解析实现代码
php Ubb代码编辑器函数代码
php实现图片转换成ASCII码的方法
php实现二进制和文本相互转换的方法
php实现将wav文件转换成图像文件并在页面中显示的方法
php转换颜色为其反色的方法
php实现转换ubb代码的方法
欢迎光临 时时商务社区 (http://bbs.4435.cn/)
Powered by Discuz! X3.2