php while loop next

來源:互聯網
上載者:User

php while loop next

迴圈執行的代碼塊中指定的次數,或在指定的條件為真。


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

PHP的迴圈
很多時候,當您編寫代碼,您希望相同的代碼塊來運行十多年,再行。而不是添加在指令碼中我們可以使用迴圈來執行這樣的任務數幾乎相等線。

在PHP中,我們有以下迴圈語句:

同時通過一個代碼塊 - 迴圈,而指定的條件為真
不...而 - 遍曆一個代碼塊一次,然後重複像長迴圈指定的條件為真
為 - 迴圈通過一個代碼塊中指定的次數
Foreach源 - 通過對每個元素的代碼塊迴圈中的一個數組

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

while迴圈
while迴圈執行的代碼塊,而條件是正確的。

文法

while (condition)
  {
  code to be executed;
  }

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

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

</body>
</html>
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5

相關文章

聯繫我們

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