Learn Before
Concept

The PHP foreach Loop

The foreach loop iterates through each key/value pair in an array and is only compatible with arrays.

<?php foreach ($array as $value) { code to be executed; } ?>

0

1

Updated 2023-02-02

References


Tags

Object-Oriented Programming (OOP) Languages

Object-Oriented Programming

Programming Language Paradigms

General programming languages

Computing Sciences

Related