array_count_values() 函數(shù)用于統(tǒng)計(jì)數(shù)組中所有值出現(xiàn)的次數(shù)。使用輸入數(shù)組的值作為鍵,將其在輸入數(shù)組中的出現(xiàn)的次數(shù)作為值,并返回值的關(guān)聯(lián)數(shù)組。
array array_count_values ( array $input );
數(shù)組的鍵是 input 里元素的值; 數(shù)組的值是 input 中元素的值出現(xiàn)的次數(shù)。
序號(hào) | 參數(shù)及說明 |
---|---|
1 | input (必填) 統(tǒng)計(jì)這個(gè)數(shù)組的值 |
返回一個(gè)關(guān)聯(lián)數(shù)組,用 input 數(shù)組中的值作為鍵名,該值在數(shù)組中出現(xiàn)的次數(shù)作為值。
此函數(shù)最初是在PHP 4.0.0版中引入的。
對(duì)數(shù)組里面的每個(gè)不是 string 和 integer 類型的元素拋出一個(gè)警告錯(cuò)誤(E_WARNING)。
測(cè)試以下array_count_values()使用示例-
<?php $input = array("orange", "mango", "banana", "orange", "banana" ); print_r(array_count_values($input)); ?>測(cè)試看看?/?
輸出結(jié)果:
Array ( [orange] => 2 [mango] => 1 [banana] => 2 )
嘗試下面的示例使用所有整數(shù)值-
<?php $input = array(10, 15, 30, 15, 10); print_r(array_count_values($input)); ?>測(cè)試看看?/?
輸出結(jié)果:
Array ( [10] => 2 [15] => 2 [30] => 1 )