How can we find or count number of elements in an array?
Last updated 6 years, 4 months ago | 1852 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);