PHP は HTML タグの js および css スタイルメソッドを削除します

WBOY
リリース: 2016-06-20 13:03:39
オリジナル
1142 人が閲覧しました

function clearHtml($content){<br /> $content=preg_replace("/<a[^>]*>/i","",$content);<br /> $content=preg_replace("/</a>/i","",$content);<br /> $content=preg_replace("/<div[^>]*>/i","",$content);<br /> $content=preg_replace("/</div>/i","",$content);<br /> $content=preg_replace("/<!--[^>]*-->/i","",$content);//注释内容 <br /> $content=preg_replace("/style=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/class=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/id=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/lang=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/width=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/height=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/border=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/face=.+?['|"]/i",'',$content);//去除样式 <br /> $content=preg_replace("/face=.+?['|"]/",'',$content);//去除样式 只允许小写 正则匹配没有带 i 参数 <br /> return $content;<br />}
ログイン後にコピー


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!