
How can we find or count number of elements in an array?
Last updated 5 years, 2 months ago | 1127 views 75 5

PHP | Count number of elements in an array
There are two ways to find the number of elements in an array:
1. sizeof($arr), This function is an alias of count()
echo sizeof($arr);
2. count($arr)
echo count($arr);