PHP4使用者手冊:流程式控制制-while_PHP

來源:互聯網
上載者:User
關鍵字 控制 流程 手冊 使用者 while 語句 運算式 stat
手冊

TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">


while 迴圈是PHP迴圈中的簡單類型。它的行為剛好像C語言中的一樣。以下是如基本的while語句:


while (expr) statement

這個while 語句的意義是很簡單的。它告訴 PHP 只要while運算式的值為真,就去重複執行 statement(s) 。在每次迴圈的開始都去檢查運算式的值,如果在執行期間這個運算式的值被改變,那麼程式在求之過急重複的內容後將結束。有時,如果運算式的值從一開始就為FALSE ,則statement(s) 連一次都不會執行。

象if 語句一樣,你可以為用大括弧把多個語句構成一組。 or by using the alternate syntax:


while (expr): statement ... endwhile;

下面兩個例了是一樣的,都輸出1 到 10:


/* example 1 */

$i = 1;
while ($i <= 10) {
print $i++; /* the printed value would be
$i before the increment
(post-increment) */
}

/* example 2 */

$i = 1;
while ($i <= 10):
print $i;
$i++;
endwhile;

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.