概念解析
array_count_values
(PHP 4, PHP 5)
array_count_values -- 統計數組中所有的值出現的次數
概念說明
array array_count_values ( array input )
array_count_values() 返回一個數組,該數組用 input 數組中的值作為鍵名,該值在 input 數組中出現的次數作為值。
例子 1. array_count_values() 例子
<?php
$array = array(1, "hello", 1, "world", "hello");
print_r(array_count_values ($array));
?>
上例將輸出:
Array
(
[1] => 2
[hello] => 2
[world] => 1
)
參見 count(),array_unique(),array_values() 和 count_chars()。