1.

How to get total number of elements used in array?

Answer»

We can use the count() or sizeof() function to GET the number of ELEMENTS in an ARRAY.

Example

$array1 = array("1","4","3");
echo count($array1);

OUTPUT : 3



Discussion

No Comment Found