thinkcmfx 和 thinkcmf5 DFA敏感词过滤算法使用

  • Post author:
  • Post category:其他


thinkcmfx存放目录 及用法

simplewind\Core\Library\Vendor\DfaFilter

引用:
function checkBanWord($content)
	{
	    vendor('DfaFilter\SensitiveHelper');
	    vendor('DfaFilter\HashMap');
	    $banned_words=explode(",", sp_get_cmf_settings("banned_words"));
	    // 查看含有的敏感词
	    $sensitiveWordGroup = SensitiveHelper::init()->setTree($banned_words)->getBadWord($content);
	    return $sensitiveWordGroup;
	   
	    
	}

thinkcmf 5 存放目录 及用法

\simplewind\extend\DfaFilter

引用 :

use DfaFilter\SensitiveHelper;

class IndexController extends HomeBaseController{

 function guolvByFile($content)
    {
        $path = "upload/ban/ban.txt";
        $path2 = "upload/ban/ban2.txt";
        $path_web = "upload/ban/ban3.txt";
        // 查看含有的敏感词
        $sensitiveWordGroup = SensitiveHelper::init()->setTreeByFile($path_web)->getBadWord($content);
        return $sensitiveWordGroup;

        // 过滤
        $filterContent = SensitiveHelper::init()->setTreeByFile($path_web)->replace($content, '');
        return $filterContent;
      
    }


}



版权声明:本文为xingnang2008原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。