foreach key value in php code example
Example 1: php foreach echo key value
foreach($page as $key => $value) {
echo "$key is at $value";
}
Example 2: php foreach
<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
foreach($age as $x => $val) {
echo "$x = $val<br>";
}
?>
Example 3: php foreach dict get key
foreach (iterable_expression as $key => $value)
statement
Example 4: php loop through array
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement