php 过滤垃圾代码过滤脏字

Posted aid12580

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 过滤垃圾代码过滤脏字相关的知识,希望对你有一定的参考价值。

/*
** 过滤一些脏词汇
** $words 脏词汇列表
** $replace 要替换成的词汇
** 返回替换完的词汇
*/
function replace_danger_word($content){
  $words=array(‘妈的‘,‘sb‘,‘我靠‘);
  $replace =‘*‘;
  foreach($words as $key=>$word){
   $content=str_replace($word,$replace,$content);
  }
  return $content;
}
/*
** 过滤一些js字符
** $string 要传入的字符
** 返回替换完的词汇
*/
function stripscript($string){
  $pregfind=array("/<script.*>.*</script>/siU",‘/on(mousewheel|mouseover|click|load|onload|submit|focus|blur)="[^"]*"/i‘);
  $pregreplace=array(‘‘,‘‘,);
  $string=preg_replace($pregfind,$pregreplace,$string);
  return $string;
 }

 

以上是关于php 过滤垃圾代码过滤脏字的主要内容,如果未能解决你的问题,请参考以下文章

脏字过滤

留言板过滤 脏字 问题 求 一个能用的 正则表达式匹配并替换. 如过滤 TextBox1 里面的文本

2-WAF主要过滤方式及绕过(HPP污染&分块传输&垃圾数据)

机器学习贝叶斯算法详解 + 公式推导 + 垃圾邮件过滤实战 + Python代码实现

在朴素贝叶斯垃圾邮件过滤中结合个体概率

绕过 Gmail 的垃圾邮件过滤器(使用 PHP 从共享主机发送的邮件)