Home  >  Article  >  Backend Development  >  php计算数组相同值出现次数的代码(array_count_values)_php技巧

php计算数组相同值出现次数的代码(array_count_values)_php技巧

WBOY
WBOYOriginal
2016-05-16 20:25:251158browse

php计算数组相同值出现次数,可以使用php自带函数array_count_values

说明

array array_count_values ( array $input )array_count_values() 返回一个数组,该数组用 input 数组中的值作为键名,该值在 input 数组中出现的次数作为值。

array_count_values() 例子

复制代码 代码如下:

$array = array(1, "hello", 1, "world", "hello");
print_r(array_count_values ($array));
?>

以上例程会输出:

复制代码 代码如下:

Array
(
    [1] => 2
    [hello] => 2
    [world] => 1
)
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn