今天做php缓存发现一个批量替换非法关键词的php代码
<?php
$badwords = array('aa', 'bb'); // 敏感词数组
$str = "aa阿斯顿克拉拉斯柯达bb阿萨达速度";
$result = filterBadWords($badwords, $str);
echo $result;
/**
* 过滤敏感词
* @param array $badwords
* @param string $str
* 作者 https://www.bz80.vip
*/
function filterBadWords($badwords, $str){
// 把敏感词替换为 ***
return str_replace($badwords, '***', $str);
}
?>
赞 (0)