php如何查询数组重复的值
$numbers = array(1, 2, 3, 2, 5, 1, 3, 2, 1);
$unique = array_unique($numbers);
$counts = array_count_values($numbers);
$repeats = array();
foreach ($unique as $value) {
if ($counts[$value] > 1) {
$repeats[] = $value;
}
}
print_r($repeats);
以上是编程学习网小编为您介绍的“php如何查询数组重复的值”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。