In the following chapters you will learn how to repeat code by using loops in PHP.
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.
Loops are used to execute the same block of code again and again, as long as a certain condition is true.
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 arrayThe following chapters will explain and give examples of each loop type.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!