PHP for循环
2018-02-22 16:40 更新
PHP教程 - PHP for循环
for循环由声明,条件和操作组成:
- declaration defines a loop-counter variable and sets it to a starting value;
- condition checks the loop-counter variable against a value;
- action changes the loop counter.
句法
for循环的一般语法如下:
for ( declaration; condition; action ) { // Run this code } // More code here
实施例1
这里是一个for循环看起来在PHP:
<?php
for ($i = 1; $i < 10; $i++) {
print "Number $i\n";
}
?>
上面的代码生成以下结果。
如你所见,for循环有三个部分用分号分隔。在声明中,我们将变量$ i设置为1。
对于条件,如果$ i小于10,则我们有循环执行。
最后,对于动作,我们为每个循环迭代的值$ i添加1。
实施例2
以下示例具有无限循环。
<?php for (;;) { print "In loop!\n"; } ?>
实施例3
你可以嵌套循环,如你所愿,像这样:
<?php
for ($i = 1; $i < 3; $i = $i + 1) {
for ($j = 1; $j < 3; $j = $j + 1) {
for ($k = 1; $k < 3; $k = $k + 1) {
print "I: $i, J: $j, K: $k\n";
}
}
}
?>
上面的代码生成以下结果。
以上内容是否对您有帮助:
更多建议: