Answers for "php array foreach example"

PHP
8

foreach loop array php

foreach (array as $value){ 
  //code to be executed; 
  print("value : $value");
} 

foreach (array as  $key => $value){ 
  //code to be executed; 
  print("key[$key] => $value");
}
Posted by: Guest on April-12-2020
13

foreach php

foreach (array_expression as $value)
    statement
foreach (array_expression as $key => $value)
    statement
Posted by: Guest on May-26-2020

Browse Popular Code Answers by Language