PHP foreach Keyword

PHP Keywords : Print all of the values in an array

Definition and Usage

The foreach keyword is used to create foreach loops, which loops through a block of code for each element in an array.

Related Pages

Read more about foreach loops in our PHP foreach Loop Tutorial.

More Examples

Example

Print keys and values from an associative array:

<?php
$people = [
  "Peter" => "35",
  "Ben" => "37",
  "Joe" => "43"
];

foreach($people as $person => $age) {
  echo "$person is $age years old";
  echo "<br>";
}
?>

❮ PHP Keywords