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