Unix and Linux Discussions Tagged with array |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
7,932 |
Shell Programming and Scripting |
|
|
|
11 |
3,972 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,683 |
Shell Programming and Scripting |
|
|
|
4 |
8,818 |
Shell Programming and Scripting |
|
|
|
6 |
2,028 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,447 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
20,696 |
Shell Programming and Scripting |
|
|
|
3 |
16,972 |
Shell Programming and Scripting |
|
|
|
8 |
2,179 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,124 |
Shell Programming and Scripting |
|
|
|
4 |
1,972 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,906 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
5,876 |
UNIX for Beginners Questions & Answers |
|
|
|
21 |
3,965 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,253 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,103 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,880 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
917 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,195 |
Shell Programming and Scripting |
|
|
|
6 |
4,481 |
Shell Programming and Scripting |
|
|
|
3 |
15,463 |
AIX |
|
|
|
3 |
2,301 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
1,617 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
5,285 |
Shell Programming and Scripting |
|
|
|
3 |
1,843 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
16,134 |
AIX |
|
|
|
6 |
13,252 |
Homework & Coursework Questions |
|
|
|
3 |
4,651 |
Shell Programming and Scripting |
|
|
|
3 |
819 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
2,668 |
Shell Programming and Scripting |
|
|
|
29 |
2,981 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,602 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,924 |
Shell Programming and Scripting |
|
|
|
12 |
2,004 |
Shell Programming and Scripting |
|
|
|
2 |
896 |
Shell Programming and Scripting |
|
|
|
17 |
1,917 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,800 |
What is on Your Mind? |
|
|
|
6 |
1,643 |
Shell Programming and Scripting |
|
|
|
8 |
5,752 |
Shell Programming and Scripting |
|
|
|
9 |
1,342 |
Shell Programming and Scripting |
ARRAY_COUNT_VALUES(3) 1 ARRAY_COUNT_VALUES(3)
array_count_values - Counts all the values of an array
SYNOPSIS
array array_count_values (array $array)
DESCRIPTION
array_count_values(3) returns an array using the values of $array as keys and their frequency in $array as values.
PARAMETERS
o $array
- The array of values to count
RETURN VALUES
Returns an associative array of values from $array 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(3) 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
)
SEE ALSO
count(3), array_unique(3), array_values(3), count_chars(3).
PHP Documentation Group ARRAY_COUNT_VALUES(3)