PHP

将php实现过滤UBB代码

时间:2024-10-22 02:15:41 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代码】相关文章:

数控编程代码大全02-13

php实习心得12-01

php实习报告11-07

Java代码的基本知识09-03

php工作总结11-11

php是什么格式?01-14

PHP Socket编程过程02-09

php开发主管的职责05-15

网页滚动文字的制作HTML代码04-10

php开发主管的工作职责09-29