continue
continue 在循環結構用用來跳過本次循環中剩余的代碼並開始執行下一次循環。
注: 注意在 php教程 中 switch 語句被認為是作為 continue 目的的循環結構。
continue 接受一個可選的數字參數來決定跳過幾重循環到循環結尾。
<?php
while (list($key,$value) = each($arr)) {
if ($key == "zhoz"){ // 如果查詢到對象的值等於zhoz,這條記錄就不會顯示出來了。
continue;
}
do_something ($value);
}
// 例子2
foreach ($list as $temp) {
if ($temp->value == "zhoz") {
continue; // 如果查詢到對象的值等於zhoz,這條記錄就不會顯示出來了。
}
do_list; // 這裡顯示數組中的記錄
}
?>
break
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
$i = 0;
while ($i < 7) {
if ($arr[$i] == "stop") {
break;
}
$i++;
}
?>