要找出數組的重復值,可以使用array_count_values()函數來計算數組中每個值的出現次數,然后循環遍歷這個計數數組,找出出現次數大于1的值即為重復值。以下是一個示例代碼:
$array = array(1, 2, 3, 4, 2, 3, 5, 6, 4);
// 計算數組中每個值的出現次數
$count_values = array_count_values($array);
// 找出重復值
$repeated_values = array();
foreach ($count_values as $value => $count) {
if ($count > 1) {
$repeated_values[] = $value;
}
}
print_r($repeated_values);
在上面的示例中,數組$array
中有兩個重復值2和3,輸出結果為:
Array
(
[0] => 2
[1] => 3
[2] => 4
)