downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<array_combinearray_diff_assoc>
Last updated: Thu, 26 Jun 2008

array_count_values

(PHP 4, PHP 5)

array_count_values — Counts all the values of an array

Description

array array_count_values ( array $input )

array_count_values() returns an array using the values of the input array as keys and their frequency in input as values.

Parameters

input

The array of values to count

Return Values

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

Errors/Exceptions

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

Examples

Example #1 array_count_values() example

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

The above example will output:

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



add a noteadd a note User Contributed Notes
Counts all the values of an array
There are no user contributed notes for this page.




<array_combinearray_diff_assoc>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs