foreach php key value code example

Example 1: php loop through array

$clothes = array("hat","shoe","shirt");
foreach ($clothes as $item) {
	echo $item;
}

Example 2: php foreach echo key value

foreach($page as $key => $value) {
  echo "$key is at $value";
}

Example 3: php foreach associative array

$arr = array(
  'key1' => 'val1',
  'key2' => 'val2',
  'key3' => 'val3'
);

foreach ($arr as $key => $val) {
  echo "$key => $val" . PHP_EOL;
}

Example 4: php for each schleife

foreach ($name as $key => $value) {
    echo ("Position {$key} enthält {$value}. ");
}

Example 5: foreach in php

$arr = array(
	'key1' => 'val',
	'key2' => 'another',
	'another' => 'more stuff' 
);
foreach ($arr as $key => $val){
	//do stuff
}

//or alt syntax
foreach ($arr as $key => $val) :
   //do stuff here as well
endforeach;

Example 6: foreach in php

<?php
// Declare an array 
$arr = array("green", "blue", "pink", "white");  
  
// Loop through the array elements 
foreach ($arr as $element) { 
    echo "$element "; 
} 
?>