[关闭]
@Chiang 2020-01-13T14:52:17.000000Z 字数 484 阅读 474

while

PHP-流程控制


while 循环是 PHP 中最简单的循环类型。它和 C 语言中的 while 表现地一样。while 语句的基本格式是:

  1. while (expr)
  2. statement
  • while 语句的含意很简单,它告诉 PHP 只要 while 表达式的值为 TRUE 就重复执行嵌套中的循环语句。表达式的值在每次开始循环时检查,所以即使这个值在循环语句中改变了,语句也不会停止执行,直到本次循环结束。有时候如果 while 表达式的值一开始就是 FALSE,则循环语句一次都不会执行。

  • 和 if 语句一样,可以在 while 循环中用花括号括起一个语句组,或者用替代语法:

  1. while (expr):
  2. statement
  3. ...
  4. endwhile;

下面两个例子完全一样,都显示数字 1 到 10:

  1. <?php
  2. /* example 1 */
  3. $i = 1;
  4. while ($i <= 10) {
  5. echo $i++; /* the printed value would be
  6. $i before the increment
  7. (post-increment) */
  8. }
  9. /* example 2 */
  10. $i = 1;
  11. while ($i <= 10):
  12. print $i;
  13. $i++;
  14. endwhile;
  15. ?>
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注