php正则表达式去除HTML标签,正则表达式过滤html标签
$str=preg_replace(/\s /, ,$ str);//过滤多余回车
$str=preg_replace(/[ ] /si , ,$ str);//过滤__( 号后面带空格)
$str=preg_replace(/\!.*?/si ,,$ str);//注释
$str=preg_replace(/(\!*?)/si ,,$ str);//过滤文档类型
$str=preg_replace(/(\/?html .*?)/si ,,$ str);//过滤超文本标记语言标签
$str=preg_replace(/(\/?br .*?)/si ,,$ str);//过滤英国铁路公司标签
$str=preg_replace(/(\/?头。*?)/si ,,$ str);//过滤头标签
$str=preg_replace(/(\/?元.*?)/si ,,$ str);//过滤自指的标签
$str=preg_replace(/(\/?身体。*?)/si ,,$ str);//过滤身体标签
$str=preg_replace(/(\/?链接。*?)/si ,,$ str);//过滤环标签
$str=preg_replace(/(\/?形式。*?)/si ,,$ str);//过滤形式标签
$str=preg_replace(/cookie/si , cookie ,$ str);//过滤饼干标签
$str=preg_replace(/(applet .*?) (.*?)(\/applet .*?)/si ,,$ str);//过滤小应用程序标签
$str=preg_replace(/(\/?小程序。*?)/si ,,$ str);//过滤小应用程序标签
$str=preg_replace(/(style .*?) (.*?)(\/style .*?)/si ,,$ str);//过滤风格标签
$str=preg_replace(/(\/?风格。*?)/si ,,$ str);//过滤风格标签
$str=preg_replace(/(title .*?) (.*?)(\/title .*?)/si ,,$ str);//过滤标题标签
$str=preg_replace(/(\/?标题。*?)/si ,,$ str);//过滤标题标签
$str=preg_replace(/(object .*?) (.*?)(\/object .*?)/si ,,$ str);//过滤目标标签
$str=preg_replace(/(\/?目标c .*?)/si ,,$ str);//过滤目标标签
$str=preg_replace(/(noframes .*?) (.*?)(\/noframes .*?)/si ,,$ str);//过滤不支持框架标记标签
$str=preg_replace(/(\/?无框架。*?)/si ,,$ str);//过滤不支持框架标记标签
$str=preg_replace(/(i?框架。*?) (.*?)(\/i?框架。*?)/si ,,$ str);//过滤设计标签
$str=preg_replace(/(\/?我?框架。*?)/si ,,$ str);//过滤设计标签
$str=preg_replace(/(脚本。*?) (.*?)(\/script .*?)/si ,,$ str);//过滤脚本标签
$str=preg_replace(/(\/?剧本。*?)/si ,,$ str);//过滤脚本标签
$ str=preg _ replace(/javascript/si , Javascript ,$ str);//过滤脚本标签
$ str=preg _ replace(/vbscript/si , Vbscript ,$ str);//过滤脚本标签
$ str=preg _ replace(/On([a-z])\ s *=/si , On\\1=,$ str);//过滤脚本标签
$str=preg_replace(/#/si , # ,$ str);//过滤脚本标签,
$str=preg_replace( @ script(.*?)/script @is ,,$ str);//过滤脚本代码
$str=preg_replace( @ iframe(.*?)/iframe @is ,,$ str);
$str=preg_replace( @ style(.*?)/style @是,“,$ str);
$str=preg_replace( @(.*?)@是,“,$ str);
?
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。