gpt4 book ai didi

php - Preg 在 php 中将抑扬符与 ^ 匹配

转载 作者:行者123 更新时间:2023-11-29 14:11:50 25 4
gpt4 key购买 nike

我知道我会收到很多愚蠢的评论,但无论我做什么我都无法弄清楚这一点。我这里有一个函数

$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 个之后的所有内容都工作正常,我尝试在这些之前添加 3 个条目,以防出现问题,但不幸的是事实并非如此。

我的写法有问题吗?

最佳答案

从评论中扩展:

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

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

关于php - Preg 在 php 中将抑扬符与 ^ 匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13373796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com