在PHP中Preg匹配circumflex与^

时间:2012-11-14 06:01:22

标签: php mysql function preg-match-all

我知道我会得到很多关于asinine的评论,但无论我做什么,我都无法弄明白。我在这里有一个功能

$filter = mysql_query("SELECT * FROM `filter`");
    $fil = mysql_fetch_array($filter);
    $bad = $fil['filter'];

$bword = explode(",", $bad);
    function wordfilter($output,$bword){
    $badWords = $bword;
$matchFound = preg_match_all("/(" . implode($badWords,"|") . ")/i",$output,$matches);

if ($matchFound) {
  $words = array_unique($matches[0]);
  foreach($words as $word) {
    $output = preg_replace("/$word/","*****",$output);
  }
}
return $output;
    } 

我知道坏词过滤器是不受欢迎的,但我的客户已经要求这个。

现在我在数据库中有一个列表,这里有几个条目。

^ass$,^asses$,^asshopper,^cock$,^coon,^cracker$,^cum$,^dick$,^fap$,^heeb$,^hell$,^homo$,^humping,^jap$,^mick$,^muff$,^paki$,^phap$,^poon$,^spic$,^tard$,^tit$,^tits$,^twat$,^vag$,ass-hat,ass-pirate,assbag

正如你所看到的那样,我对某些词语使用了一个旋律和美元符号。

我遇到的问题是以ass开头的前三个单词,即使我写了类似glassesgrasshoppers的内容,但它仍然阻止了该单词工作正常,我尝试在这些问题之前添加3个条目,但不幸的是它不是。

我的写作方式有问题吗?

1 个答案:

答案 0 :(得分:1)

延伸评论:

尝试使用\b来检测字词:

$matchFound = preg_match_all('/\b('.implode($badWords,"|").')\b/i',$output,$matches);