找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1527|回复: 0
打印 上一主题 下一主题

php实现过滤UBB代码的类

[复制链接]

2536

主题

2536

帖子

7532

积分

论坛元老

Rank: 8Rank: 8

积分
7532
跳转到指定楼层
楼主
发表于 2018-2-14 05:48:30 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

            本文实例讲述了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代码的方法
            
  • 分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    用户反馈
    客户端