> php教程 > php手册 > 본문

php实现过滤UBB代码的类

WBOY
풀어 주다: 2016-06-06 20:06:59
원래의
1311명이 탐색했습니다.

这篇文章主要介绍了php实现过滤UBB代码的类,涉及php正则表达式的操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现过滤UBB代码的类。分享给大家供大家参考。具体如下:

PHP代码如下:

复制代码 代码如下:

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","\\1",$Text);
        $Text=preg_replace("/\[url\](.+?)\[\/url\]/is","\\1",$Text);
        $Text=preg_replace("/\[url=(http:\/\/.+?)\](.+?)\[\/url\]/is","\\2",$Text);
        $Text=preg_replace("/\[url=(.+?)\](.+?)\[\/url\]/is","\\2",$Text);
        $Text=preg_replace("/\[color=(.+?)\](.+?)\[\/color\]/is","\\2",$Text);
        $Text=preg_replace("/\[font=(.+?)\](.+?)\[\/font\]/is","\\2",$Text);
        $Text=preg_replace("/\[email=(.+?)\](.+?)\[\/email\]/is","\\2",$Text);
        $Text=preg_replace("/\[email\](.+?)\[\/email\]/is","\\1",$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.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!