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的作用的詳細內容,更多請關注TW511.COM其它相關文章!