How can we know the count/number of elements of an array?
2766
13-Jun-2011
Anonymous User
13-Jun-2011We will accomplishe this task in two ways.
a) sizeof($numArray) This function is an alias of count.
b) count($numArray)