php过滤网站敏感关键词例子

在php中过滤敏感词的方法超级的简单我们只要使用strtr或者str_replace函数就可以直接快速的替换掉了,下面来两个简单好用的例子.

例子1,代码如下:

  1. $badword=array('张三','丰田');
  2. $badword1 = array_combine($badword,array_fill(0,count($badword),'*'));
  3. $bb = '我今天开着上班';
  4. $str = strtr($bb, $badword1);

例子2,代码如下:

  1. <?php
  2. function cleanWords1($text) {
  3. //根据个人需要添加需要过滤的词汇,以"|"作为分隔符
  4. $badword = "敏感字|敏感字|敏感字|敏感字|敏感字";
  5. $badwords = explode('|',$badword);
  6. foreach($badwords as $v){
  7. $text = str_replace($v,'**',$text);
  8. }
  9. return $text;
  10. }//开源代码phpfensi.com
  11. function cleanWords2($text) {
  12. //根据个人需要添加需要过滤的词汇,以"|"作为分隔符
  13. $badword = "敏感字|敏感字|敏感字|敏感字|敏感字";
  14. return preg_replace("/$badword/i",'**',$text);
  15. }
  16. $string="敏感字符串";
  17. echo cleanWords1($string).'<br/>';
  18. echo cleanWords2($string);
  19. ?>