PHP的一個過濾敏感詞或髒話的方法
阿新 • • 發佈:2019-01-01
主要使用了 int substr_count ( string haystack, string needle [, int offset [, int length]] ) 這個方法,這個方法遍歷待測的字串$str中有沒有$allergicWord陣列中所包含的敏感詞:
$allergicWord = array('髒話','罵人話'); $str = '這句話裡包含了髒話和罵人話'; for ($i=0;$i<count($allergicWord);$i++){ $content = substr_count($str, $allergicWord[$i]); if($content>0){ $info = $content; break; } } if($info>0){ //有違法字元 return TRUE; }else{ //沒有違法字元 return FALSE; }
如果需要將出現的敏感詞替換,比如替換###或者***可以結合substr_replace ( mixed string, string replacement, int start [, int length] )方法使用
=================================================================
關鍵字的存放形式為txt,txt檔案中以這樣形式存放:|賭博機|賣血|出售腎|出售器官|眼角膜 <?php function Filter_word( $str, $fileName ) { if ( !($words = file_get_contents( $fileName )) ){ die('file read error!'); } $str = strtolower($str); //var_dump($words); $word = preg_replace("/[1,2,3]\r\n|\r\n/i", '', $words); //$wor = substr($word,0,-1); //$w = preg_replace("|/|i", '\/', $word); //echo "<pre>"; //var_dump($w); //$words = "賭博機|賣血|出售腎|出售器官|眼角膜"; $matched = preg_replace('/'.$word.'/i', '***', $string); return $matched; } $content = "<a href='#'>我要賣血fsdf賣血d 賭博機wo眼口交膜</a>"; if ($result = Filter_word($content, './words.txt') ){ echo $result; echo "替換成功 "; }else{ echo "替換失敗! "; } ?>