How can we know the count/number of elements of an array?
Ask by Anonymous User
Updated 21 Sep 2020
We will accomplishe this task in two ways.
a) sizeof($numArray) This function is an alias of count.
b) count($numArray)