[php]array_count_values 計算陣列值重複次數計算
(PHP 4, PHP 5)
array_count_values() 返回一個數組,該數組用 input 數組中的值作為鍵名,該值在 input 數組中出現的次數作為值。
Example #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
)
其它範例:
<?php
$array = array('a', 'b', 'a', 'a', 'c', 'a', 'd', 'a', 'c', 'd');
$answer = array_count_values($array);
echo $answer['a']
?>
值:5
全站熱搜
留言列表