No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

array_count_values

(PHP 4, PHP 5, PHP 7)

array_count_valuesCounts all the values of an array

Description

array_count_values ( array $array ) : array

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

PHP: array_count_values - Manual Home of Manuel PHP  Contents Haut

Parameters

array

The array of values to count

PHP: array_count_values - Manual Home of Manuel PHP  Contents Haut

Return Values

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

PHP: array_count_values - Manual Home of Manuel PHP  Contents Haut

Errors/Exceptions

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

PHP: array_count_values - Manual Home of Manuel PHP  Contents Haut

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
)

PHP: array_count_values - Manual Home of Manuel PHP  Contents Haut

See Also

  • count() - Count all elements in an array, or something in an object
  • 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

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph