Home > php教程 > PHP源码 > 一个不利用分词就可以实现的铭感词过滤功能

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

PHP中文网
Release: 2016-05-23 17:10:00
Original
1208 people have browsed it

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 &#39;SensitiveThesaurus.php&#39;;
    }
 
}
Copy after login

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 Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template