
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Count Values from a PHP Array in a Foreach Loop
Let’s say the following is our PHP array
$listOfNames = array('John','David','Mike','David','Mike','David');
We want the output to display the count of values in the above array like this −
Array ( [John] => 1 [David] => 3 [Mike] => 2 )
To get the count, use inbuilt function array_count_values().
Example
The PHP code is as follows
<!DOCTYPE html> <html> <body> <?php $listOfNames = array('John','David','Mike','David','Mike','David'); $frequencyOfEachName = array_count_values($listOfNames); print_r( $frequencyOfEachName); ?> </body> </html>
Output
This will produce the following output
Array ( [John] => 1 [David] => 3 [Mike] => 2 )
Advertisements