php continue和break流程式控制制語名用法

來源:互聯網
上載者:User

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++;
}
?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.