您好,登錄后才能下訂單哦!
如何使用php正則去掉html屬性?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
php使用正則去掉html的方法:首先創建一個PHP示例文件;然后通過正則表達式“preg_replace("/<([a-za-z]+)[^>]*>/","<\\1>",$html);”過濾所有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.*?)>(.*?)<(\/i?frame.*?)>/si","",$str); //過濾frame標簽 $str=preg_replace("/<(\/?i?frame.*?)>/si","",$str); //過濾frame標簽 $str=preg_replace("/<(script.*?)>(.*?)<(\/script.*?)>/si","",$str); //過濾script標簽 $str=preg_replace("/<(\/?script.*?)>/si","",$str); //過濾script標簽 $str=preg_replace("/javascript/si","Javascript",$str); //過濾script標簽 $str=preg_replace("/vbscript/si","Vbscript",$str); //過濾script標簽 $str=preg_replace("/on([a-z]+)\s*=/si","On\\1=",$str); //過濾script標簽 $str=preg_replace("/&#/si","&#",$str); //過濾script標簽,如javAsCript:alert(
清除空格,換行
function DeleteHtml($str) { $str = trim($str); $str = strip_tags($str,""); $str = ereg_replace("\t","",$str); $str = ereg_replace("\r\n","",$str); $str = ereg_replace("\r","",$str); $str = ereg_replace("\n","",$str); $str = ereg_replace(" "," ",$str); return trim($str); }
過濾HTML屬性
1,過濾所有html標簽的正則表達式:
</?[^>]+> //過濾所有html標簽的屬性的正則表達式: $html = preg_replace("/<([a-zA-Z]+)[^>]*>/","<\\1>",$html);
關于如何使用php正則去掉html屬性問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。