for each item array php code example
Example 1: forreah php
$arr = array(1, 2, 3, 4);
foreach ($arr as &$value) {
$value = $value * 2;
}
Example 2: php loop through array
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement