php检测中文违禁词敏感词代码

代码语言:php

所属分类:文件

代码描述:php检测中文违禁词敏感词代码

代码标签: php 检测 中文 违禁词 敏感词 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php
$content = "他们准备去放火了";
if ($res = check_content($content)) {

    //过滤敏感词
    $content = str_replace($res, '*', $content);
    echo '检测到敏感词:' . $res.",过滤后:".$content;


}


function check_content($content) {
    // $file = 'words.txt';
    //可以通过读取违禁词文件,中文违禁词下载地址:http://down.bfw.wiki/file/16757653335971140021.html
    // $sensitive_array = array_map('rtrim', file($file));
    $sensitivewords = "杀人|放火".........完整代码请登录后点击上方下载按钮下载查看

网友评论0