Home > php教程 > php手册 > php 敏感词过滤高级版

php 敏感词过滤高级版

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-22 18:38:40
Original
1202 people have browsed it

前面介绍过一个过滤了些特殊字符的php程序,下面我们升级一下这个敏感词过滤函数更强大了有了它再也不怕敏感词中间加空格或者其他标点符号了。

只要用户可以发言的地方,就可能出现广告或者其他敏感词,因此必须加入敏感词过滤机制来保持站点的"纯洁"。

过滤机制:加入php关键字正则匹配

<?php
//$str 为用户数据
function wordFilter($str)
{
       /*
    获取敏感词列表
    敏感词的存储方法:
    1:存储在txt文件中(一般的方法)
    2:存储在缓存(比较好的方法)
    我是存储在memcachd中。
    */
    $words = getSensitiveWords();
    foreach ($words as $word)
    {
        $preg_letter = &#39;/^[A-Za-z]+$/&#39;;
        if (preg_match($preg_letter, $str))
        {//匹配中文
        $str = strtolower($str);
        $pattern_1 = &#39;/([^A-Za-z]+&#39; . $word . &#39;[^A-Za-z]+)|([^A-Za-z]+&#39; . $word . &#39;\s+)|(\s+&#39; . $word . &#39;[^A-Za-z]+)|(^&#39; . $word . &#39;[^A-Za-z]+)|([^A-Za-z]+&#39; . $word.&#39;$)/&#39;;
        //敏感词两边不为空
        if (preg_match($pattern_1, $str))
        {
            $flag = TRUE;
        }
        $pattern_2 = &#39;/(^&#39; . $word . &#39;\s+)|(\s+&#39; . $word . &#39;\s+)|(\s+&#39; . $word . &#39;$)|(^&#39; . $word . &#39;$)/&#39;;
        //敏感词两边可以为空格
        if (preg_match($pattern_2, $str))
        {
            $flag = TRUE;
        }
        }
        else
        {//匹配英文字符串,大小写不敏感
        $pattern = &#39;/\s*&#39; . $word . &#39;\s*/&#39;;
        if (preg_match($pattern, $str))
        {
            $flag = TRUE;
        }
        }
    }
}
Copy after login

存在问题:

如果单纯只加入关键字匹配,用户反过滤的方法五花八门,包括中间加入空格或者其他标点符号。

例子:

敏感词:扣扣

用户处理后:

扣 扣

扣,扣

扣@扣

扣1扣

这时候代码的正则匹配就可能匹配不出来。

解决办法:

先对用户数据去除所有的标点符号和一些特殊字符,然后再进行敏感词判断。

代码:

$flag_arr=array(&#39;?&#39;,&#39;!&#39;,&#39;¥&#39;,&#39;(&#39;,&#39;)&#39;,&#39;:&#39;,&#39;‘&#39;,&#39;’&#39;,&#39;“&#39;,&#39;”&#39;,&#39;《&#39;,&#39;》&#39;,&#39;,&#39;,&#39;…&#39;,&#39;。&#39;,&#39;、&#39;,&#39;nbsp&#39;,&#39;】&#39;,&#39;【&#39;,&#39;~&#39;);
$content_filter=preg_replace(&#39;/\s/&#39;,&#39;&#39;,preg_replace("/[[:punct:]]/",&#39;&#39;,strip_tags(html_entity_decode(str_replace($flag_arr,&#39;&#39;,$content),ENT_QUOTES,&#39;UTF-8&#39;))));
Copy after login

$content_filter 就是处理后的用户数据,然后再进行 wordFilter($content_filter ) 过滤操作


文章网址:

随意转载^^但请附上教程地址。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
foreach problem
From 1970-01-01 08:00:00
0
0
0
Breaking if and foreach
From 1970-01-01 08:00:00
0
0
0
Loop problem, foreach
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template