php計算數組相同值出現次數,可以使用php自帶函數array_count_values
:
說明
array array_count_values ( array $input )array_count_values() 返回一個數組,該數組用 input 數組中的值作為鍵名,該值在 input 數組中出現的次數作為值。
array_count_values() 例子
復制代碼 代碼如下:
<?php
$array = array(1, "hello", 1, "world", "hello");
print_r(array_count_values ($array));
?>
以上例程會輸出:
復制代碼 代碼如下:
Array
(
[1] => 2
[hello] => 2
[world] => 1
)