How to use a for loop statement in PHP?

In PHP, you can use the for loop statement to repeatedly execute a block of code.

The structure of a for loop is as follows:

for (初始化表达式; 条件表达式; 递增表达式) {
    // 代码块
}

The initialization expression is executed once before the loop begins to initialize the loop control variable; the condition expression is evaluated before each iteration of the loop, if true, the loop continues, if false, the loop exits; the increment expression is executed after each iteration of the loop to update the loop control variable.

Here is a simple example, using a for loop to print numbers from 1 to 10:

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

Running the code above will output: 1 2 3 4 5 6 7 8 9 10.

You can adjust the initialization expression, conditional expression, and increment expression based on specific needs to achieve different looping logic.

bannerAds