本文实例讲述了laravel框架实现敏感词汇过滤功能。分享给大家供大家参考,具体如下:
最近项目有需求,要对用户的签名,回复进行敏感词检测,然后搜到了一个好用的扩展,分享给大家。
https://github.com/firelustre/php-dfa-nsitive
通过 compor 进行安装:
compor require lustre/php-dfa-nsitive
然后在 app 目录下创建 rvices ,并添加 nsitivewords.php
<?phpnamespace app\rvices;u dfafilter\nsitivehelper;class nsitivewords{ protected static $handle = null; private functio乒乓球培训班n __construct() { } private function __clone() { } /** * 获取实例 */ public static function getinstance($word_path = []) { if (!lf::$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); lf::$handle = nsitivehelper::init(); if (!empty($paths)) { foreach ($paths as $path) { lf::$handle->ttreebyfile($path); 全封闭学校好吗 } 李欣颖 } } return lf::$hand英语书信作文范文le; } /** * 检测是否含有敏感词 */ public static function islegal($content) { return lf::getinstance()-&书市gt;islegal($content); } /** * 敏感词过滤 */ public static function replace($content, $replace_char = '', $repeat = fal, $match_type = 1) { return lf::getinstance()->replace($content, $replace_char, $repeat, $match_type); } /** * 标记敏感词 */ public static function mark($content, $start_tag, $end_tag, $match_type = 1) { return lf::getinstance()->mark($content, $start_tag, $end_tag, $match_type); } /** * 获取文本中的敏感词 */ public static function getbadword($content, $match_type = 1, $word_num = 0) { return lf::getinstance()->getbadword($content, $match_type, $word_num); }}
然后我们就可以在项目中,使用 nsitivewords::getbadword()
来获取文本中是否有敏感词。
$bad_word = nsitivewords::getbadword($content);if (!empty($bad_word)) { throw new \exception('包含敏感词:' . current($bad_word));}
在 storage 目录下创建 dict 目录存放敏感词词库,bk.txt …..等等,这些词库都是我在网上下载的。
点击此处。
本文发布于:2023-04-08 14:26:47,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/44fb964a74866525b263504b5cbeecf8.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:laravel框架实现敏感词汇过滤功能示例.doc
本文 PDF 下载地址:laravel框架实现敏感词汇过滤功能示例.pdf
留言与评论(共有 0 条评论) |