PHPackages                             phpch/dfa-sensitive-word - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Validation &amp; Sanitization](/categories/validation)
4. /
5. phpch/dfa-sensitive-word

ActiveLibrary[Validation &amp; Sanitization](/categories/validation)

phpch/dfa-sensitive-word
========================

PHP-dfa敏感词过滤

v1.0.0(2y ago)230MITPHPPHP &gt;=7.4

Since Jul 28Pushed 2y ago1 watchersCompare

[ Source](https://github.com/z83760037/dfa-sensitive-word)[ Packagist](https://packagist.org/packages/phpch/dfa-sensitive-word)[ RSS](/packages/phpch-dfa-sensitive-word/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

dfa-sensitive-word
==================

[](#dfa-sensitive-word)

php实现基于确定有穷自动机算法的铭感词过滤

### 安装扩展

[](#安装扩展)

```
composer require phpch/dfa-sensitive-word

```

#### 如果你需要手动引入

[](#如果你需要手动引入)

```
require './vendor/autoload.php';

use Phpch\SensitiveWord\SensitiveWordFilter;

```

#### 构建敏感词库树

[](#构建敏感词库树)

场景一: 可以拿到不同（用户）词库数组

```
 $wordData = array(
        '察象蚂',
        '拆迁灭',
        '车牌隐',
        '成人电',
        '成人卡通',
        ......
    );

    $handle = SensitiveWordFilter::init()->setArray($wordData)->buildTree();

```

场景二: 全站使用一套敏感词库

```
    // 获取感词库文件路径
    $wordFilePath = 'tests/words/key2.txt';

    $handle = SensitiveWordFilter::init()->setFilePath($wordFilePath)->buildTree();

     // 设置缓存后可以避免重复构建铭感词树
      $handle = SensitiveWordFilter::init()->setFilePath($wordFilePath)->buildTree(true);

      // 删除缓存
    $handle->clearCache();

```

### 设置干扰因子

[](#设置干扰因子)

```
$wordFilePath = 'tests/words/key2.txt';
$handle = SensitiveWordFilter::init()->setFilePath($wordFilePath)->setDisturbList(['-'])->buildTree();
$filterContent = $handle->replace('我是中--国人'); // 我是*****

```

### 设置匹配规则

[](#设置匹配规则)

```
默认是最大匹配

// 最小匹配规则
$wordData = ["中国","中国人"];
$handle = SensitiveWordFilter::init()->setArray($wordData)->setMatchTypeMin()->buildTree();
$filterContent = $handle->replace('我是中国人'); // 我是**人

// 最大匹配规则
$wordData = ["中国","中国人"];
$handle = SensitiveWordFilter::init()->setArray($wordData)->setMatchTypeMax()->buildTree();
$filterContent = $handle->replace('我是中国人'); // 我是***

```

### 检测是否含有敏感词

[](#检测是否含有敏感词)

```
$islegal = $handle->contains($content);

```

### 敏感词过滤

[](#敏感词过滤)

```
// 敏感词替换为*为例（会替换为相同字符长度的*）
$filterContent = $handle->replace($content, '*');

 // 或敏感词替换为***为例
 $filterContent = $handle->replace($content, '***', false);

```

### 标记敏感词

[](#标记敏感词)

```
 $markedContent =  $handle->mark($content, '', '');

```

### 获取文字中的敏感词

[](#获取文字中的敏感词)

```
// 获取内容中所有的敏感词
$sensitiveWordGroup = $handle->getBadWord($content);
// 仅且获取一个敏感词
$sensitiveWordGroup =  $handle->getBadWord($content, 1);

```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1017d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3732c6567767cd78eceed636f39cbb5d1b9ff8e3c667171492fcffe611e9c16b?d=identicon)[z83760037](/maintainers/z83760037)

---

Top Contributors

[![765264087](https://avatars.githubusercontent.com/u/167863322?v=4)](https://github.com/765264087 "765264087 (7 commits)")[![z83760037](https://avatars.githubusercontent.com/u/50696684?v=4)](https://github.com/z83760037 "z83760037 (1 commits)")

---

Tags

dfa

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/phpch-dfa-sensitive-word/health.svg)

```
[![Health](https://phpackages.com/badges/phpch-dfa-sensitive-word/health.svg)](https://phpackages.com/packages/phpch-dfa-sensitive-word)
```

###  Alternatives

[webmozart/assert

Assertions to validate method input/output with nice error messages.

7.6k894.0M1.2k](/packages/webmozart-assert)[bensampo/laravel-enum

Simple, extensible and powerful enumeration implementation for Laravel.

2.0k15.9M104](/packages/bensampo-laravel-enum)[swaggest/json-schema

High definition PHP structures with JSON-schema based validation

48612.5M73](/packages/swaggest-json-schema)[stevebauman/purify

An HTML Purifier / Sanitizer for Laravel

5325.6M19](/packages/stevebauman-purify)[ashallendesign/laravel-config-validator

A package for validating your Laravel app's config.

217905.3k5](/packages/ashallendesign-laravel-config-validator)[crazybooot/base64-validation

Laravel validators for base64 encoded files

1341.9M8](/packages/crazybooot-base64-validation)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
