1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > php正则过滤html标签 空格 换行符的代码(附说明)

php正则过滤html标签 空格 换行符的代码(附说明)

时间:2019-06-26 18:51:03

相关推荐

php正则过滤html标签 空格 换行符的代码(附说明)

php教程|php手册

str,replace,preg,lt,gt

php教程-php手册

复制代码 代码如下:

在线阅读源码php,ubuntu系统怎么删除,tomcat是干什么呢,爬虫gps地址,php实现定时发送短信,seo总结提升lzw

$str=preg_replace(“/\s+/”, ” “, $str); //过滤多余回车

$str=preg_replace(“/<[ ]+/si","<",$str); //过滤<__("<"号后面带空格) $str=preg_replace("//si”,””,$str); //注释

$str=preg_replace(“//si”,””,$str); //过滤DOCTYPE

$str=preg_replace(“//si”,””,$str); //过滤html标签

$str=preg_replace(“//si”,””,$str); //过滤head标签

$str=preg_replace(“//si”,””,$str); //过滤meta标签

$str=preg_replace(“//si”,””,$str); //过滤body标签

$str=preg_replace(“//si”,””,$str); //过滤link标签

$str=preg_replace(“//si”,””,$str); //过滤form标签

$str=preg_replace(“/cookie/si”,”COOKIE”,$str); //过滤COOKIE标签

asp qq在线客服源码,ubuntu设置扩展显示,爬虫网页要会员,php impolad,南漳seo营销lzw

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤applet标签

$str=preg_replace(“//si”,””,$str); //过滤applet标签

c md5加密解密 源码下载,vscode官网登不上,ubuntu怎么日志,tomcat安装不了路径,爬虫 薅羊毛,php输出星期几,伊春seo优化公司靠得住,php网站安装说明书lzw

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤style标签

$str=preg_replace(“//si”,””,$str); //过滤style标签

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤title标签

$str=preg_replace(“//si”,””,$str); //过滤title标签

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤object标签

$str=preg_replace(“//si”,””,$str); //过滤object标签

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤noframes标签

$str=preg_replace(“//si”,””,$str); //过滤noframes标签

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤frame标签

$str=preg_replace(“//si”,””,$str); //过滤frame标签

$str=preg_replace(“/(.*?)/si”,””,$str); //过滤script标签

$str=preg_replace(“//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(

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。