php array length for loop

40

$array = array("Jonathan","Sampson");

foreach($array as $value) {
  print $value;
}

Comments

Submit
0 Comments