<script>ec(2);</script>
有時,您可能希望讓無條件循環的開始,並允許括號內的語句來決定何時退出循環。
有兩個特殊的語句可用在循環使用:中斷和繼續。
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中文網其他相關文章!