我們在實際的PHP函數continue與眾不同之處在於接受一個可選的數字參數來決定跳過幾重循環到循環結尾。
在php中,continue 在循環結構中用來跳過本次循環中剩余的代碼並開始執行下一次循環。這一點和其他語言是一致的,不過,另有妙處:continue 接受一個可選的數字參數來決定跳過幾重循環到循環結尾。
- #php_continue.php
- $i = 0;
- $j = 0;
- while ($i++ <3) {//level 3
- echo "Outer
- n";
- while (1){//level 2
- echo "Middle
- n";
- while (1){//level 1
- echo "Inner
- n";
- continue 3;
- }
- echo "Thisnever gets output.
- n";
- }
- echo"Neither does this.
- n";
- $j++;
- //after runscontinue 3,it comes to the end of level 3
- }
- echo"$j=$j";//output: $j=0
- ?>
以上這段代碼,就是PHP函數continue的具體用法,希望對大家有所幫助。