這篇文章主要介紹了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."; }