欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

一个不利用分词就可以实现的铭感词过滤功能

程序员文章站 2022-05-19 21:29:18
...
php代码
<?php
/**
 * 敏感词汇过滤
 * User: konakona
 * Date: 12-11-28
 * Time: 下午4:37
 * 调用方式
 * if(false === SensitiveFilter::filter($content)){
 *      error("含有敏感词汇");
 * }
 */
 
class SensitiveFilter extends Think{
 
    public static $wordArr = array();
    public static $content = "";
 
    /**
     * 处理内容
     * @param $content
     *
     * @return bool
     */
    public static function filter($content){
        if($content=="") return false;
        self::$content = $content;
        empty(self::$wordArr)?self::getWord():"";
        foreach ( self::$wordArr as $row){
            if (false !== strstr(self::$content,$row)) return false;
        }
        return true;
    }
 
    public static function getWord(){
        self::$wordArr = include 'SensitiveThesaurus.php';
    }
 
}