Do while Loop

Introduction

The do while loop in PHP is a control structure used to execute a block of code repeatedly based on a condition. Unlike the while loop, the do while loop guarantees that the code block will run at least one time before checking the condition. This makes it useful when the first execution must happen regardless of the condition result.

What is a Do While Loop

A do while loop is a post tested loop in PHP. It first executes the code and then checks the condition. If the condition is true, the loop continues. If the condition is false, the loop stops.

Syntax of Do While Loop

do {
// code to be executed
} while (condition);

How Do While Loop Works

First the code inside the do block runs one time. After execution, the condition is checked. If the condition is true, the loop runs again. This process continues until the condition becomes false.

Example of Do While Loop

<?php
$i = 1;

do {
echo "Number: " . $i;
$i++;
} while ($i <= 5);
?>

Output

Number 1 Number 2 Number 3 Number 4 Number 5

When to Use Do While Loop

The do while loop is used when:

You want the loop to execute at least once
You are validating user input
You are working with menus or repeated actions
You need post condition checking logic

Difference Between While Loop and Do While Loop

While loop checks condition first then executes code
Do while loop executes code first then checks condition

Example with Condition False Initially

<?php
$x = 10;

do {
echo "Value: " . $x;
$x++;
} while ($x < 5);
?>

Even though the condition is false, the loop runs one time.

Real World Use Case

Do while loops are commonly used in:

User login attempts
Menu driven programs
Input validation systems
Game loops and retries

Advantages of Do While Loop

Ensures at least one execution
Simple and easy to understand
Useful for input based systems
Works well with interactive applications

Common Mistakes

Forgetting to update loop variable
Creating infinite loops
Incorrect condition placement
Not understanding post condition logic

Best Practices

Always update loop control variable
Keep conditions simple and clear
Avoid unnecessary nested loops
Use meaningful variable names

Home Ā» PHP Fundamentals (Beginner Level) > Loops > do while Loop