ホームページ > 記事 > PHPフレームワーク > laravelフレームワークを使用したセンシティブワードフィルタリング機能の実装について
次のコラム Laravel チュートリアル では、laravel フレームワークを使用してセンシティブな単語のフィルタリング機能を実装する方法を紹介します。
最近、ユーザーの署名や返信で敏感な単語を検出するプロジェクトが必要であり、その後、有用な拡張機能を見つけて、すべての人と共有しました。
https://github.com/FireLustre/php-dfa-sensitive
コンポーザー経由でインストールします:
composer require lustre/php-dfa-sensitive
次に、アプリ ディレクトリで作成します。 Services を追加し、SensitiveWords.php
<?php namespace App\Services; use DfaFilter\SensitiveHelper; class SensitiveWords { protected static $handle = null; private function __construct() { } private function __clone() { } /** * 获取实例 */ public static function getInstance($word_path = []) { if (!self::$handle) { //默认的一些敏感词库 $default_path = [ storage_path('dict/bk.txt'), storage_path('dict/fd.txt'), storage_path('dict/ms.txt'), storage_path('dict/qt.txt'), storage_path('dict/sq.txt'), storage_path('dict/tf.txt'), ]; $paths = array_merge($default_path, $word_path); self::$handle = SensitiveHelper::init(); if (!empty($paths)) { foreach ($paths as $path) { self::$handle->setTreeByFile($path); } } } return self::$handle; } /** * 检测是否含有敏感词 */ public static function isLegal($content) { return self::getInstance()->islegal($content); } /** * 敏感词过滤 */ public static function replace($content, $replace_char = '', $repeat = false, $match_type = 1) { return self::getInstance()->replace($content, $replace_char, $repeat, $match_type); } /** * 标记敏感词 */ public static function mark($content, $start_tag, $end_tag, $match_type = 1) { return self::getInstance()->mark($content, $start_tag, $end_tag, $match_type); } /** * 获取文本中的敏感词 */ public static function getBadWord($content, $match_type = 1, $word_num = 0) { return self::getInstance()->getBadWord($content, $match_type, $word_num); } }
を追加します。その後、プロジェクトで SensitiveWords::getBadWord()
を使用して、テキスト内に機密用語が含まれているかどうかを取得できます。
$bad_word = SensitiveWords::getBadWord($content); if (!empty($bad_word)) { throw new \Exception('包含敏感词:' . current($bad_word)); }
保存ディレクトリに dict ディレクトリを作成し、機密単語辞書 bk.txt...などを保存します。
以上がlaravelフレームワークを使用したセンシティブワードフィルタリング機能の実装についての詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。