91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用laravel框架怎么過濾敏感詞匯

發布時間:2021-04-06 16:25:29 來源:億速云 閱讀:267 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用laravel框架怎么過濾敏感詞匯,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

通過 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));
}

關于使用laravel框架怎么過濾敏感詞匯就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁夏| 白山市| 阿勒泰市| 财经| 青川县| 金湖县| 屯留县| 和田市| 泸溪县| 拜泉县| 琼海市| 温宿县| 容城县| 怀化市| 仲巴县| 长阳| 鄂托克前旗| 祁门县| 上饶市| 吉水县| 广东省| 余江县| 枣庄市| 舒城县| 佳木斯市| 嵊泗县| 图片| 平果县| 邓州市| 金平| 双柏县| 商丘市| 土默特右旗| 定兴县| 登封市| 哈巴河县| 凤台县| 浦北县| 霍州市| 万安县| 黄冈市|