用laravel框架實現敏感詞彙過濾功能

php自學中心發表於2021-01-27

文章來自:www.jb51.net/article/180470.htm
微信學習群:Laravel技術交流群

好記性不如爛筆頭,學習php開發也不能懶,作筆記是一種學習的好習慣!
關注以下公眾號,可獲取兩套視訊教程:【laravel7.x 從入門到核心架構講解】 與 【Laravel高階實戰教程42講】 ,助你提升你的php學習技能。最後祝你學習愉快!
關注公眾號:輕鬆學Laravel



最近專案有需求,要對使用者的簽名,回覆進行敏感詞檢測,然後搜到了一個好用的擴充套件,分享給大家。

github.com/FireLustre/php-dfa-sens...

通過 composer 進行安裝:

composer require lustre/php-dfa-sensitive

然後在 app 目錄下建立 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));
}

在 storage 目錄下建立 dict 目錄存放敏感詞詞庫,bk.txt …..等等

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章