php mysql敏感词_用PHP如何实现敏感词过滤

本文实例讲述了PHP实现的敏感词过滤方法。分享给大家供大家参考,具体如下:

1、敏感词过滤方法

/**

* @todo 敏感词过滤,返回结果

* @param array $list 定义敏感词一维数组

* @param string $string 要过滤的内容

* @return string $log 处理结果

*/

function sensitive($list, $string){

$count = 0; //违规词的个数

$sensitiveWord = ''; //违规词

$stringAfter = $string; //替换后的内容

$pattern = "/".implode("|",$list)."/i"; //定义正则表达式

if(preg_match_all($pattern, $string, $matches)){ //匹配到了结果

$patternList = $matches[0]; //匹配到的数组

$count = count($patternList);

$sensitiveWord = implode(',', $patternList); //敏感词数组转字符串

$replaceArray = array_combine($patternList,array_fill(0,count($patternList),'*')); //把匹配到的数组进行合并,替换使用

$stringAfter = strtr($string, $replaceArray); //结果替换

}

$log = "原句为 [ {$string} ]
";

if($count==0){

$log .= "暂未匹配到敏感词!";

}else{

$log .= "匹配到 [ {$count} ]个敏感词:[ {$sensitiveWord} ]
".

"替换后为:[ {$stringAfter} ]";

}

return $log;

}

2、调用方法

function testAction(){

$string = 'likeyou小白喜欢小黑爱着的大黄'; //要过滤的内容

$list = ['小明', '小红', '大白', '小白', '小黑', 'me', 'you']; //定义敏感词数组

$result = $this->sensitive($list, $string);

echo ($result);

die;

//打印结果:

/*

原句为 [ likeyou小白喜欢小黑爱着的大黄 ]

匹配到 [ 3 ]个敏感词:[ you,小白,小黑 ]

替换后为:[ like**喜欢*爱着的大黄 ]

*/

}

以上内容希望帮助到大家,很多PHPer在进阶的时候总会遇到一些问题和瓶颈,业务代码写多了没有方向感,不知道该从那里入手去提升,对此我整理了一些资料,包括但不限于:分布式架构、高可扩展、高性能、高并发、服务器性能调优、TP6,laravel,YII2,Redis,Swoole、Swoft、Kafka、Mysql优化、shell脚本、Docker、微服务、Nginx等多个知识点高级进阶干货需要的可以免费分享给大家

最后,祝所有大家在面试中过关斩将,拿到心仪offer。如果想与一群3-8年资深开发者一起交流学习的话,需要请戳这里​shimo.im9a4c2ba04ad85d1fc847cf953a7b5820.png

你可能感兴趣的:(php,mysql敏感词)