php实现敏感词过滤的简单办法
首先我们介绍下 substr_count() 函数
int substr_count(string haystack,string needle)
substr_count() 函数检索子串出现的次数,参数haystack是指定的字符串,参数needle为指定的字符。
废话不多说,开始撸代码
$allergicWord = array('脏话','骂人话');
$str = '这句话里包含了脏话和骂人话';
for ($i=0; $i 0 ){
$info = $content;
break;
}
}
if($info>0){
//有违法字符
return TRUE;
}else{
//没有违法字符
return FALSE;
}
如果需要将出现的敏感词替换,比如替换###或者*可以结合substr_replace ( mixed string, string replacement, int start [, int length] )方法使用
// 关键字的存放形式为txt,txt文件中以这样形式存放:|赌博机|卖血|出售肾|出售器官|眼角膜
";
//var_dump($w);
//$words = "赌博机|卖血|出售肾|出售器官|眼角膜";
$matched = preg_replace('/'.$word.'/i', '***', $string);
return $matched;
}
$content = "我要卖血fsdf卖血d 赌博机wo眼口交膜";
if ($result = Filter_word($content, './words.txt') ){
echo $result;
echo "替换成功 ";
}else{
echo "替换失败! ";
}
?>