PHP 百分网手机站

将php实现过滤UBB代码

时间:2018-05-22 12:54:06 PHP 我要投稿

将php实现过滤UBB代码

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

  PHP代码如下:

  复制代码 代码如下:class Day{

  function ubb($Text) { /// UBB代码转换

  //$Text=htmlspecialchars($Text);

  //$Text=ereg_replace("rn","

  ",$Text);

  $Text=ereg_replace("[br]","

  ",$Text);

  $Text=nl2br($Text);

  $Text=stripslashes($Text);

  $Text=preg_replace("/t/is"," ",$Text);

  $Text=preg_replace("/[url](http://.+"1",$Text);

  $Text=preg_replace("/[url](.+"1",$Text);

  $Text=preg_replace("/[url=(http://.+?)](.+"2",$Text);

  $Text=preg_replace("/[url=(.+?)](.+"2",$Text);

  $Text=preg_replace("/[color=(.+?)](.+","2",$Text);

  $Text=preg_replace("/[font=(.+?)](.+","2",$Text);

  $Text=preg_replace("/[email=(.+?)](.+","2",$Text);

  $Text=preg_replace("/[email](.+","1",$Text);

  $Text=preg_replace("/[i](.+"1",$Text);

  $Text=preg_replace("/[u](.+"1",$Text);

  $Text=preg_replace("/[b](.+"1",$Text);

  $Text=preg_replace("/[fly](.+"1",$Text);

  $Text=preg_replace("/[move](.+","1",$Text);

  $Text=preg_replace("/[shadow=([#0-9a-z]{1,10}),([0-9]{1,3}),([0-9]{1,2})](.+?)[/shadow]/is","

  return $Text; ",$Text);}}

【将php实现过滤UBB代码】相关文章:

1.php如何过滤危险html代码

2.过滤HTML代码

3.关于PHP实现数组队列的复制代码

4.php 301转向实现代码

5.php和javascript之间变量的传递实现代码

6.PHP 柱形统计图的实现代码

7.php树型类实例代码

8.PHP代码优化技巧