大家知道php過濾html標簽嗎?下面我們就給大家詳細介紹一下吧!我們積累了一些經驗,在此拿出來與大家分享下,請大家互相指正。
$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標簽
相信大家已經學會php過濾html標簽了吧!感謝大家對我們網站的支持!
相關推薦:
js過濾html標簽的技巧