how can we count the length of array code example
Example: get array length using php
// using count() we can get proper length of the array
$names = array("Ankur","Raj","Ram","Suresh");
// pass array into count() as parameter it will return array length
echo count($names);
// output : 4