You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1145512773
3c83650908
|
1 year ago | |
---|---|---|
.. | ||
src | 1 year ago | |
.gitignore | 1 year ago | |
LICENSE | 1 year ago | |
README.md | 1 year ago | |
composer.json | 1 year ago |
README.md
sensitive-word
过滤敏感词,采用 DFA 算法
增加包含词的过滤(如:敏感、敏感词)
Installation
$ composer require nelsonkti/sensitive-word
Laravel
引导服务 config/app.php
'providers' => [
Nelsonkti\SensitiveWord\SensitiveWordServiceProvider::class,
],
'aliases' => [
'SensitiveWord' => Nelsonkti\SensitiveWord\SensitiveWord::class,
],
Usage
基本使用:
use Nelsonkti\SensitiveWord\Facades\SensitiveWord;
$path = './word.txt'
$content = '敏感,敏感词需要过滤'; #检查内容
$filename = '/txt/sensitive-words.txt'; #敏感词文件路径
SensitiveWord::searchWord($content, $filename);
# 返回: array('敏感', '敏感词');
SensitiveWord::filterWord($content, $filename);
# 返回: **,**词需要过滤
License
sensitive-word is licensed under The MIT License (MIT).