当前位置:Gxlcms > PHP教程 > php-Arrays函数-array_count_values-统计数组中所有值的出现次数_PHP教程

php-Arrays函数-array_count_values-统计数组中所有值的出现次数_PHP教程

时间:2021-07-01 10:21:17 帮助过:5人阅读

array_count_values() 函数

【功能】
该函数将返回一个数组,
该数组用input数组中的值作为键名,
该值在input数组中出现的次数作为值
【使用范围】
php4、php5
【使用】
array array_count_values( array input )
input/必需/被统计的数组
【示例】
[php]
$arr = array( "key1" => "val1", "key2" => "val2",
"key3" => "val1", "key4" => "val4" );
print_r( array_count_values( $arr ) );
/*
Array
(
[val1] => 2
[val2] => 1
[val4] => 1
)
*/


摘自 zuodefeng的笔记

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478198.htmlTechArticlearray_count_values() 函数 【功能】 该函数将返回一个数组, 该数组用input数组中的值作为键名, 该值在input数组中出现的次数作为值 【使用范...

人气教程排行