Loops

suggest change

Introduction

Loops are a fundamental aspect of programming. They allow programmers to create code that repeats for some given number of repetitions, or iterations. The number of iterations can be explicit (6 iterations, for example), or continue until some condition is met (‘until Hell freezes over’).

This topic covers the different types of loops, their associated control statements, and their potential applications in PHP.

Syntax

Remarks

It is often useful to execute the same or similar block of code several times. Instead of copy-pasting almost equal statements loops provide a mechanism for executing code a specific number of times and walking over data structures. PHP supports the following four types of loops:

To control these loops, continue and break statements are available.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents