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

Heim  >  Artikel  >  Backend-Entwicklung  >  php 去除html标签 js 和 css样式方法

php 去除html标签 js 和 css样式方法

WBOY
WBOYOriginal
2016-06-20 13:03:391132Durchsuche

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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:经常用到的正则表达式整理Nächster Artikel:php 数组函数总结