for循环是PHP中更为复杂的循环,其语法如下:
for (expr1; expr2; expr3){ statement }
下面的例子依然输出1到10:
<?php for ($i = 1; $i <= 10; $i++) { echo $i; } ?>
0