I know the function count()
of php,
but what's the function for counting how often a value appear in an array?
Example:
$array = array(
[0] => 'Test',
[1] => 'Tutorial',
[2] => 'Video',
[3] => 'Test',
[4] => 'Test'
);
Now I want to count how often "Test" appears.
Try the function
array_count_values
you can find more information about the function in the documentation here: http://www.php.net/manual/en/function.array-count-values.phpExample from that page:
Will produce:
PHP has a function called
array_count_values
for that.Example:
Output: