首頁 >後端開發 >php教程 >php:Break與Continue如何跳出循環的實例分析

php:Break與Continue如何跳出循環的實例分析

黄舟
黄舟原創
2017-06-25 09:45:401317瀏覽

3f1c4e4b6b16bbbd69b2ee476dc4f83aec(2);2cacc6d41bbb37262a98f745aa00fbf0

有時,您可能希望讓無條件循環的開始,並允許括號內的語句來決定何時退出循環。

有兩個特殊的語句可用在循環使用:中斷和繼續。

break語句終止或For迴圈的同時,繼續執行現行的程式碼如下迴圈後(如有)。或者,

你可以把一個數字後,折價關鍵字,說明如何循環結構的多層次,以擺脫。這樣,埋

藏在一份聲明中深層嵌套的循環可以打破最外層循環。

<?php
echo "<p><b>Example of using the Break statement:</b></p>";
for ($i=0; $i<=10; $i ) { 
   if ($i==3){break;} 
   echo "The number is ".$i;
   echo "<br />"; 
}
echo "<p><b>One more example of using the Break statement:</b><p>";
$i = 0;
$j = 0;
while ($i < 10) {
  while ($j < 10) {
    if ($j == 5) {break 2;} // breaks out of two while loops教程
    $j ;
  }
  $i ;
}
echo "The first number is ".$i."<br />";
echo "The second number is ".$j."<br />";
?>

continue語句終止了在語句區塊執行一或For迴圈的同時,繼續對下一個迭代迴圈的執行

<?php
echo "<p><b>Example of using the Continue statement:</b><p>";
for ($i=0; $i<=10; $i ) { 
   if (i==3){continue;} 
   echo "The number is ".$i; 
   echo "<br />"; 
} 
?>
</td> </tr> </table>

以上是php:Break與Continue如何跳出循環的實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn