是的,我知道array_unique
函数,但问题是匹配在我的搜索字词中可能有合法的重复项,例如:
$str = "fruit1: banana, fruit2: orange, fruit3: banana, fruit4: apple, fruit5: banana";
preg_match("@fruit1: (?<fruit1>\w+), fruit2: orange, fruit3: (banana), fruit4: (?<fruit4>apple), fruit5: (banana)@",$str,$match);
array_shift($match); // I dont need whole match
print_r($match);
输出是:
Array
(
[fruit1] => banana
[0] => banana
[1] => banana
[fruit4] => apple
[2] => apple
[3] => banana
)
因此,唯一真正重复的键是[0]和[2],但array_unique
给出:
Array
(
[fruit1] => banana
[fruit4] => apple
)
答案 0 :(得分:2)
这是我解决您问题的方法:
unset($matches[0]);
$matches = array_unique($matches);
答案 1 :(得分:1)
我自己找到了,解决方案是一个while循环删除后续密钥就是它所处的不是数字:
while (next($match) !== false) {
if (!is_int(key($match))) {
next($match);
unset($m[key($match)]);
}
}
reset($match);