一个高效的敏感词过滤方法(PHP)
程序员文章站
2022-03-19 20:45:48
...
一个高效的敏感词过滤方法(PHP) :
$badword = array( '张三','张三丰','张三丰田' ); $badword1 = array_combine($badword,array_fill(0,count($badword),'*')); $bb = '我今天开着张三丰田上班'; $str = strtr($bb, $badword1); echo $str;
$hei=array( '中国', '日本' ); $blacklist="/".implode("|",$hei)."/i"; $str="中国一是一个很好的国家"; if(preg_match($blacklist, $str, $matches)){ print "found:". $matches[0]; } else { print "not found."; }
以上就是一个高效的敏感词过滤方法(PHP)的内容,更多相关内容请关注PHP中文网(www.php.cn)!
相关文章:
上一篇: php中{}大括号是什么意思_php基础
下一篇: Git 教程之查看提交历史详解