php 中 return exit break contiue 詳解

來源:互聯網
上載者:User
 return、break和contiue是語言結構,就如同if語句之類的,但是exit卻是個函數。 1.exit函數作用:Output a message and terminate the current script輸出一則訊息並且終止當前指令碼。如果一段文本中包括多個以 <?php 開始,以 ?> 結束的指令碼,exit退出所有指令碼。比如一篇php文本包括一下代碼,則不輸出為world。<?phpecho "hello";exit;?><?phpecho "world";?>文法格式:void表示沒有傳回值。void exit ([ string $status ] )void exit ( int $status )If status is a string, this function prints the status just before exiting.如果status是一段字串,這個函數在指令碼退出前列印status。If status is an integer, that value will also be used as the exit status. Exit statuses should be in the range 0 to 254, the exit status 255 is reserved by PHP and shall not be used. The status 0 is used to terminate the program successfully.如果status是一個整數,這個整數會被作為退出狀態。退出狀態應該從0到254,退出狀態255被PHP保留並禁止使用。狀態0被用來表示成功的終止程式。  2.return語言結構的用法 作用:終止函數的執行和從函數中返回一個值 3.break和continue 用在for,foreach,while,do..while 或者 switch 結構中。 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; }echo "$val<br>\n";}  $i = 0;while (++$i) {switch ($i) {case 5:echo "At 5<br>\n";break 1; case 10:echo "At 10; quitting<br>\n";break 2; default:break;}}?>continue 在迴圈結構用用來跳過本次迴圈中剩餘的代碼並開始執行本迴圈結構的下一次迴圈。 注: 注意在 PHP 中 switch 語句被認為是作為 continue 目的的迴圈結構。 continue 接受一個可選的數字參數來決定跳過幾重迴圈到迴圈結尾。 代碼: <?phpwhile (list ($key, $value) = each ($arr)) {if (!($key % 2)) { // skip odd memberscontinue;}do_something_odd ($value);} $i = 0;while ($i++ < 5) {echo "Outer<br>\n";while (1) {echo " Middle<br>\n";while (1) {echo " Inner<br>\n";continue 3;}echo "This never gets output.<br>\n";}echo "Neither does this.<br>\n";}?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.