search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

首页课程PHP Fun Breakthrough Classdo...while loop statement

do...while loop statement

目录列表

do...while循环

do...while与while的语法结构基本一样,也是一个条件循环,功能也基本一样。

基本语法:

<?php

do {
   //代码块
} while (判断);

?>


代码实例:

<?php

$i = 1;
do {
 echo $i;
 $i++;
} while ($i < 5);

?>

do...while 循环首先会执行一次代码块,然后检查条件,如果指定条件为真,则重复循环,为假则跳过。


&lt;?php $i = 1; do { echo '我爱PHP中文网'; $i++; } while ($i &gt; 5); ?&gt; 这段代码会被运行几次?

1/2