How can we find or count number of elements in an array?

Last updated 5 years, 6 months ago | 1222 views 75     5

Tags:- PHP

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);