PHP 用htmlentities() 函數把HTML標籤轉換成Html實體
定義與用法
htmlentities() 函式把字元轉換為HTML 實體。
語法
htmlentities(string,quotestyle,character-set)
PHP:過濾html標籤的函數(這個最強大)
PHP過濾html標籤竟然有內部的函數可用,相對來說簡直是太強大了。
php過濾html的函數:
strip_tags(string)
<br/>
這樣就可以過濾掉所有的html標籤了。
如果想要過濾掉除了之外的所有html標籤,可以這樣寫:
strip_tags(string,"");
過濾除了
xxx
之外的所有html標籤,則可以這樣寫:
strip_tags(string," ");
PHP過濾常見html標籤的正規表示式
php 專案開發中,常常要用到一些過濾html標籤的正規表示式,收藏一下備用:
$str=preg_replace("/\s+/", " ", $str); //过滤多余回车 $str=preg_replace("/<[ ]+/si","<",$str); //过滤<("<"号后面带空格) $str=preg_replace("/<\!–.*?–>/si","",$str); //注释 $str=preg_replace("/<(\!.*?)>/si","",$str); //过滤DOCTYPE $str=preg_replace("/<(\/?html.*?)>/si","",$str); //过滤html标签 $str=preg_replace("/<(\/?head.*?)>/si","",$str); //过滤head标签 $str=preg_replace("/<(\/?meta.*?)>/si","",$str); //过滤meta标签 $str=preg_replace("/<(\/?body.*?)>/si","",$str); //过滤body标签 $str=preg_replace("/<(\/?link.*?)>/si","",$str); //过滤link标签 $str=preg_replace("/<(\/?form.*?)>/si","",$str); //过滤form标签 $str=preg_replace("/cookie/si","COOKIE",$str); //过滤COOKIE标签 $str=preg_replace("/<(applet.*?)>(.*?)<(\/applet.*?)>/si","",$str); //过滤applet标签 $str=preg_replace("/<(\/?applet.*?)>/si","",$str); //过滤applet标签 $str=preg_replace("/<(style.*?)>(.*?)<(\/style.*?)>/si","",$str); //过滤style标签 $str=preg_replace("/<(\/?style.*?)>/si","",$str); //过滤style标签 $str=preg_replace("/<(title.*?)>(.*?)<(\/title.*?)>/si","",$str); //过滤title标签 $str=preg_replace("/<(\/?title.*?)>/si","",$str); //过滤title标签 $str=preg_replace("/<(object.*?)>(.*?)<(\/object.*?)>/si","",$str); //过滤object标签 $str=preg_replace("/<(\/?objec.*?)>/si","",$str); //过滤object标签 $str=preg_replace("/<(noframes.*?)>(.*?)<(\/noframes.*?)>/si","",$str); //过滤noframes标签 $str=preg_replace("/<(\/?noframes.*?)>/si","",$str); //过滤noframes标签 $str=preg_replace("/<(i?frame.*?)>(.*?)
以上是詳細介紹PHP過濾常見html標籤的正規表示式的詳細內容。更多資訊請關注PHP中文網其他相關文章!