作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我会收到很多愚蠢的评论,但无论我做什么我都无法弄清楚这一点。我这里有一个函数
$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
开头的前三个单词即使我写了诸如 glasses
或 grasshoppers< 之类的内容,它也会遮挡该单词
但前 3 个之后的所有内容都工作正常,我尝试在这些之前添加 3 个条目,以防出现问题,但不幸的是事实并非如此。
我的写法有问题吗?
最佳答案
从评论中扩展:
尝试使用\b
来检测单词:
$matchFound = preg_match_all('/\b('.implode($badWords,"|").')\b/i',$output,$matches);
关于php - Preg 在 php 中将抑扬符与 ^ 匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13373796/
我是一名优秀的程序员,十分优秀!