当前位置:首页 > PHP教程 > php函数 > 列表

php过滤所有HTML标记

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-19 22:59:07 浏览: 评论:0 

文章为你提供二款php 过滤所有HTML标记,他可以过滤所有的html标签啊,去除html标记,代码如下:

  1. function text2html($txt){ 
  2.         $txt = str_replace("  "," ",$txt); 
  3.         $txt = str_replace("<","&lt;",$txt); 
  4.         $txt = str_replace(">","&gt;",$txt); 
  5.         $txt = preg_replace("/[ ]{1,}/isu","<br/> ",$txt); 
  6.         return $txt

清除html标记,代码如下:

  1. function clearhtml($str){ 
  2.         $str = str_replace('<','&lt;',$str); 
  3.         $str = str_replace('>','&gt;',$str); 
  4.         return $str; 
  5. }//开源软件:phpfensi.com

Tags: php过滤HTML php过滤标记

分享到: