首页 > 语言 > PHP > 正文

php过滤所有HTML标记

2024-09-04 11:49:00
字体:
来源:转载
供稿:网友

文章为你提供二款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. }//开源软件:Vevb.com

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表