foreach in php means code example

Example 1: 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");
}

Example 2: loop through php array

foreach (array_expression as $value)
    statement
foreach (array_expression as $key => $value)
    statement

Example 3: php loop through array

foreach($array as $item) {
    echo $item['filename'];
    echo $item['filepath'];

    // to know what's in $item
    echo '<pre>'; var_dump($item);
}

Tags:

Php Example