最新消息: 新版网站上线了!!!

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

  1. <?php 
  2. /* 
  3. word.txt 
  4. 中国 
  5. 测试 
  6. */ 
  7.  
  8.  
  9.  
  10. //我们这里简化一下 
  11. header("Content-type:text/html;charset=utf-8"); 
  12. $file = "./word.txt"
  13. $badword = file_get_contents($file); //该文本中为敏感词汇,共有将近4000个 
  14. $hei = explode("\n",$badword); 
  15. print_r($hei); 
  16. $blacklist="/".implode("|",$hei)."/i"
  17. $str="一是一个很好的国家挫仑"
  18. if(preg_match($blacklist, $str, $matches)){ 
  19.     print "found:". $matches[0]; 
  20. else { 
  21.     print "not found."

 

转载请注明:谷谷点程序 » php敏感词过滤的简单实现方法