The PHP for loop

PHP Fundamentals

Published: Sep 13, 2021 by C.S. Rhymes

PHP Fundamentals

This post is part of a series of posts about the fundamentals of PHP.

If you have something you want to repeat then consider using a PHP for loop, saving you from copying and pasting the same code multiple times. Adding the code into a loop means you only have to write it once, and you also only have to maintain the code in one place in future.

The PHP for loop allows you to loop a defined number of times, until a defined condition is no longer true.

for ($i = 0; $i < 10; $i++) {
    echo $i;
}

// 0123456789

This is what is happening:

  • Define a variable $i as zero $i = 0;
  • Keep looping if the variable $i is less than 10 $i < 10;
  • Each loop, add 1 to $i (increment) $i++;
  • If $i is no longer less than 10, then stop the loop and don’t add 1 to $i

Breaking a for loop

You can also break out of a for loop using the break keyword. In the example below, if the variable $i is equal to 5 then it will break out of the loop, ignoring the $i < 10; that we set previously in the loop definition.

for ($i = 0; $i < 10; $i++) {
    echo $i;

    if ($i === 5) {
        break;
    }
}

// 012345

Without any expressions

If you really wanted to you can leave the expressions empty in the for loop and define the variable before the loop, define the break inside the loop and increment the variable inside the loop as well.

$i = 0;

for (; ; ) {
    if ($i === 5) {
        break;
    }

    echo $i;
    $i ++;
}

// 01234

I honestly can’t think of a reason why you would do this though, except maybe if you don’t like your work colleagues very much…

Looping through an array

You can loop through an existing array using a for loop if we wanted to, using $i as the array key. The for loop variable needs to be initially defined as zero as array keys begin at zero $i = 0;. We can then use php’s count() function to count the length of the array.

$trees = ['oak', 'ash', 'birch', 'maple'];

for ($i = 0; $i < count($trees); $i++) {
    echo $trees[$i] . ' ';
}

// oak ash birch maple

The downside to this code is that the count($trees) runs before each loop to check if the condition is still true. Instead, we can calculate the length of the array once and then pass that into the for loop.

$trees = ['oak', 'ash', 'birch', 'maple'];
$treesCount = count($trees);

for ($i = 0; $i < $treesCount; $i++) {
    echo $trees[$i] . ' ';
}

// oak ash birch maple

Also consider using a foreach loop for looping through an array as this will loop over the length of the array without calculating the length.

Avoid using $i

Many examples use $i as a variable in for loops, such as the php.net docs (also this article, oops), but try and use a more descriptive name as it will help you out when reading your code at a later date, and more importantly, if you have a for loop inside another for loop then you could end up overwriting the original $i variable, causing an infinite loop.

// Don't do this
for ($i = 1; $i <= 10; $i++) {
    echo $i;

    // Some more code here

    for ($i = 0; $i <= 10; $i ++) {
        echo $i;
    }
}

// 1012345701234570123457012345701234570123457012345701234570123457012345701234570123457012345 etc, etc,

Instead, use descriptive variable names for you loop so you can better distinguish each variable in each loop. In this example we have 5 trees and each tree has 10 leaves. Don’t worry about the <br /> tag, that is just for formatting.

for ($trees = 1; $trees <= 5; $trees++) {
    echo 'Tree ' . $trees . ' has leaves '; 

    for ($leaves = 1; $leaves <= 10; $leaves ++) {
        echo $leaves . ', ';
    }

    echo '<br />';
}

// Tree 1 has leaves 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
// Tree 2 has leaves 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
// Tree 3 has leaves 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
// Tree 4 has leaves 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
// Tree 5 has leaves 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,

For loops are very powerful tools, allowing you to save time and write cleaner and more maintainable code. Hopefully this introduction will get you thinking about how you could benefit from using them in future.

PHP Beginner Code

Share

Latest Posts

Using when with the Laravel Http Client
Using when with the Laravel Http Client

Here’s a little tip I discovered that I haven’t seen documented anywhere. You can use when() and unless() with the Laravel Http client.

New book announcement!
New book announcement!

Announcing the new book, The Little-Astwick Mysteries - Trouble at the church, by C.S. Rhymes. It is now available for pre-order on the Amazon Kindle store for £2.99, with the release date of the 1st February 2024.

Using prettier to format your Jekyll theme
Using prettier to format your Jekyll theme

I have been using prettier for a few years to automatically format code, especially JavaScript and TypeScript projects, as it helps standardise the output on a shared code project. I have maintained a few different Jekyll themes over the years and wanted to use the power of prettier to automatically format code consistently.

How NOT to make a website

How NOT to make a Website

By C.S. Rhymes

From £2.49

Nigel's Intranet Adventure

Nigel's Intranet Adventure

By C.S. Rhymes

From £2.99