for each php sintax code example
Example 1: forreah php
$arr = array(1, 2, 3, 4);
foreach ($arr as &$value) {
$value = $value * 2;
}
Example 2: 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;