PHP Loops
While, Do While, For, Foreach, Break/Continue.
PHP Loops
Often when you write code, you want the same block of code to run over and over again a certain number of times. So, instead of adding several almost equal code-lines in a script, we can use loops.
In PHP, we have the following loop types:
while- loops through a block of code as long as the specified condition is truedo...while- loops through a block of code once, and then repeats the loop as long as the specified condition is truefor- loops through a block of code a specified number of timesforeach- loops through a block of code for each element in an array
Break and Continue
You have already seen the break statement used in an earlier chapter of this tutorial. It was used to "jump out" of a switch statement.
The break statement can also be used to jump out of a loop.
The continue statement breaks one iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the loop.