PHP

The for each statement

The foreach construct provides an easy way to iterate over arrays. foreach works only on arrays and objects, and will issue an error when you try to use it on a variable with a different data type or an uninitialized variable.
There are two syntaxes:

Syntax:

//syntax 1
foreach (array_expression as $value) {
    //statement;
}

//syntax 2    
foreach (array_expression as $key => $value) {
    //statement;
}

The first form loops over the array given by array_expression. On each iteration, the value of the current element is assigned to $value and the internal array pointer is advanced by one (so on the next iteration, you'll be looking at the next element).

The second form will additionally assign the current element's key to the $key variable on each iteration.

Example:

<?php

$arr = array(1, 2, 3, 4, 5);
foreach ($arr as $value) {
    echo $value.'<br />';
}
?>

Output:

Tutorialik.com
1
2
3
4
5



Subscribe us on Youtube

Share This Page on


Ask Question