continue
continue 在迴圈結構用來跳過本次迴圈中剩餘的程式碼並開始執行下一次迴圈。
註: 注意在 php教學 中 switch 語句被認為是作為 continue 目的的循環結構。
continue 接受一個可選的數字參數來決定跳過幾重循環到迴圈結尾。
<?php while (list($key,$value) = each($arr)) { if ($key == "zhoz") { // 如果查询到对象的值等于zhoz,这条记录就不会显示出来了。 continue; } do_something ($value); }
範例2
<?php 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++; } ?>
以上是php基礎流程控制語句continue與break用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!