> php教程 > php >

php实现敏感词过滤的简单办法

来源:网络 文章列表 2018-12-21 8
本文使用php中的substr_count检索字符串的方法实现违禁词过滤,写的不好,仅供参考

首先我们介绍下 substr_count() 函数

int substr_count(string haystack,string needle)

substr_count() 函数检索子串出现的次数,参数haystack是指定的字符串,参数needle为指定的字符。

废话不多说,开始撸代码

$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 "替换失败! ";     
}   

?>  

 

腾讯云限量秒杀

1核2G 5M 50元/年 2核4G 8M 74元/年 4核8G 5M 818元/年 CDN流量包 100GB 9元

版权声明

本站部分原创文章,部分文章整理自网络。如有转载的文章侵犯了您的版权,请联系站长删除处理。如果您有优质文章,欢迎发稿给我们!联系站长:
愿本站的内容能为您的学习、工作带来绵薄之力。

评论

  • 随机获取
点击刷新
精彩评论

友情链接