array_count_values

(PHP 4, PHP 5, PHP 7, PHP 8)

array_count_valuesCounts the occurrences of each distinct value in an array

Опис

array_count_values(array $array): array

array_count_values() returns an array using the values of array (which must be ints or strings) as keys and their frequency in array as values.

Параметри

array

The array of values to count

Значення, що повертаються

Returns an associative array of values from array as keys and their count as value.

Помилки/виключення

Throws E_WARNING for every element which is not string or int.

Приклади

Приклад #1 array_count_values() example

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

Поданий вище приклад виведе:

Array
(
    [1] => 2
    [hello] => 2
    [world] => 1
)

Прогляньте також

  • count() - Підраховує кількість елементів масиву або об’єкту Countable
  • array_unique() - Removes duplicate values from an array
  • array_values() - Return all the values of an array
  • count_chars() - Return information about characters used in a string