UltraWebsiteHosting.comUltraWebsiteHosting.com
 

array_count_values

(PHP 4 )

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.

Example 1. array_count_values() example

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

The printout of the above program will be:
Array
(
    [1] => 2
    [hello] => 2
    [world] => 1
)



Go back to index



Have unlimited websites hosted for as low as $5.95 a month! Check out our new Hosting Plans!


Note: Documentation is made available for our clients. The application's homepage is located at PHP.net


 


All pages Copyright © 2002-2008 by Flux Services, Inc. All rights reserved.
All trademarks used are properties of their respective owners.
Refund Policy  Privacy Statement  Service Agreement


< >