]*>/i","",$content); $content=preg_replace("//i","",$content); $content=preg_repla"/> ]*>/i","",$content); $content=preg_replace("//i","",$content); $content=preg_repla">

ホームページ  >  記事  >  バックエンド開発  >  PHP は HTML タグの js および css スタイルメソッドを削除します

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

WBOY
WBOYオリジナル
2016-06-20 13:03:391137ブラウズ

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 />}


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。