Unix and Linux Discussions Tagged with array |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
8,140 |
Shell Programming and Scripting |
|
|
|
11 |
4,028 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,810 |
Shell Programming and Scripting |
|
|
|
4 |
8,939 |
Shell Programming and Scripting |
|
|
|
6 |
2,053 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,481 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
21,807 |
Shell Programming and Scripting |
|
|
|
3 |
17,158 |
Shell Programming and Scripting |
|
|
|
8 |
2,260 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,188 |
Shell Programming and Scripting |
|
|
|
4 |
2,043 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,938 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
6,163 |
UNIX for Beginners Questions & Answers |
|
|
|
21 |
4,043 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,382 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,130 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,238 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
945 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,438 |
Shell Programming and Scripting |
|
|
|
6 |
4,531 |
Shell Programming and Scripting |
|
|
|
3 |
15,553 |
AIX |
|
|
|
3 |
2,320 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
1,694 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
5,355 |
Shell Programming and Scripting |
|
|
|
3 |
1,858 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
16,404 |
AIX |
|
|
|
6 |
13,898 |
Homework & Coursework Questions |
|
|
|
3 |
4,687 |
Shell Programming and Scripting |
|
|
|
3 |
851 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
2,856 |
Shell Programming and Scripting |
|
|
|
29 |
3,194 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,645 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,016 |
Shell Programming and Scripting |
|
|
|
12 |
2,085 |
Shell Programming and Scripting |
|
|
|
2 |
933 |
Shell Programming and Scripting |
|
|
|
17 |
2,005 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,845 |
What is on Your Mind? |
|
|
|
6 |
1,686 |
Shell Programming and Scripting |
|
|
|
8 |
6,162 |
Shell Programming and Scripting |
|
|
|
9 |
1,407 |
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)