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

Last updated 6 years, 1 month ago | 1762 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);