php loop continue

來源:互聯網
上載者:User

php loop continue執行的代碼塊中指定的次數,或在指定的條件為真。


-------------------------------------------------- ------------------------------

對於迴圈
迴圈使用的是當你事Crowdsourced Security Testing道多少次的指令碼應該運行。

文法

for (init; condition; increment)
  {
  code to be executed;
  }

參數:

初始化:主要用於設定一個計數器(但可以是任何代碼執行在一次迴圈的開始)
條件:評估每個迴圈迭代。如果值為TRUE,則迴圈繼續。如果值為FALSE,則迴圈結束。
增量:主要用於增加一個計數器(但可以是任何代碼將在迴圈結束時執行)
註:以上可以是空的,或者有多個運算式每個參數(以逗號分隔)。

例如
下面的例子定義了一個迴圈,開始與i = 1。迴圈將繼續運行,因為我只要小於或等於5。我將增加1每次迴圈運行:

<html>
<body>

<?php
for ($i=1; $i<=5; $i++)
  {
  echo "The number is " . $i . "<br />";
  }
?>

</body>
</html>

The number is 1
The number is 2
The number is 3
The number is 4
The number is 5

執行個體二

<?php
while (list($key, $value) = each($arr)) {
    if (!($key % 2)) { // skip odd members
        continue;
    }
    do_something_odd($value);
}

$i = 0;
while ($i++ < 5) {
    echo "Outer<br />n";
    while (1) {
        echo "&nbsp;&nbsp;Middle<br />n";
        while (1) {
            echo "&nbsp;&nbsp;Inner<br />n";
            continue 3;
        }
        echo "This never gets output.<br />n";
    }
    echo "Neither does this.<br />n";
}
?>

<?php
for ($i = 0; $i < 5; ++$i) {
    if ($i == 2)
        continue
    print "$in";
}
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.