array_count_values()
array_count_values - Counts all the values of an array
Syntax
array array_count_values (
array $input)
Arguments
- input - The array of values to count
Description
array_count_values() returns an array using the values of the input array as keys and their frequency in input as values.
Version
PHP 4, 5
Return value
Returns an associative array of values from input as keys and their count as value.