break 在某些電腦程式語言中是保留字,其作用大多情況下是終止所在層的迴圈。在 C語言 的 switch(開關語句)中,break 語句也可用於執行完一個 case(分支)後立即跳出目前 switch 結構。在某些程式調試過程中則使用break來設定斷點。下面我們就介紹一下break在PHP中的作用。
推薦教學:PHP影片教學
#break 結束目前for,foreach,while,do- while 或switch 結構的執行。
break 可以接受一個可選的數字參數來決定跳出幾重迴圈。
<?php $arr = array('one', 'two', 'three', 'four', 'stop', 'five'); while (list (, $val) = each($arr)) { if ($val == 'stop') { break; /* You could also write 'break 1;' here. */ } echo "$val<br />/n"; } /* Using the optional argument. */ $i = 0; while (++$i) { switch ($i) { case 5: echo "At 5<br />/n"; break 1; /* Exit only the switch. */ case 10: echo "At 10; quitting<br />/n"; break 2; /* Exit the switch and the while. */ default: break; } } ?>
以上是php中break的作用的詳細內容。更多資訊請關注PHP中文網其他相關文章!