使用PHP正则过滤html空格、换行符等
作者:bea
最常用正则过滤代码,能够帮你过滤多余回车,注释,html标签等。
代码如下:
$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标签
$str=preg_replace("/(.*?)/si","",$str); //过滤applet标签
$str=preg_replace("//si","",$str); //过滤applet标签
$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(
猜你喜欢
您可能感兴趣的文章:
- 张恩民PHP100视频教程收集整理全
- 详细讲解自学PHP基础教程
- 4种方法使用PHP生成XML文件
- 分析session_unset和session_destroy的区别
- 分析php模块memcache和memcached的区别
- PHP编程入门之面向对象中接口与多态
- 如何在PHP开发中更好的使用继承
- 深入理解编程语言PHP的变量
- php读取网页文件方法总结
- php异常如何抛出以及处理办法
- PHP内置函数获取文件夹的大小
- 网站中.htaccess文件如何写以及重要性
- PHP框架MVC原理和模板smarty原理
- 3种实现页面跳转的方法你喜欢哪种
- php代码获取指定文件的详细信息
- php连接mysql函数列表和操作实例
- 使用php开发你必须得注意的要点
- php启动apache模块rewrite实现伪静态
- PHP程序员必备的正则表达式