天天看點

php for continue,php Break 與 Continue跳出循環例子

有時,您可能希望讓無條件循環的開始,并允許括号内的語句來決定何時退出循環。

有兩個特殊的語句可用在循環使用:中斷和繼續。

break語句終止或For循環的同時,繼續執行現行的代碼如下循環後(如有)。或者,

你可以把一個數字後,折價關鍵字,說明如何循環結構的多層次,以擺脫。這樣,埋

藏在一份聲明中深層嵌套的循環可以打破最外層循環。

echo "

Example of using the Break statement:

";

for ($i=0; $i<=10; $i ) {

if ($i==3){break;}

echo "The number is ".$i;

echo "

";

}

echo "

One more example of using the Break statement:

";

$i = 0;

$j = 0;

while ($i < 10) {

while ($j < 10) {

if ($j == 5) {break 2;} // breaks out of two while loops教程

$j ;

}

$i ;

}

echo "The first number is ".$i."

";

echo "The second number is ".$j."

";

?>

continue語句終止了在語句塊執行一或For循環的同時,繼續對下一個疊代循環的執行

echo "

Example of using the Continue statement:

";

for ($i=0; $i<=10; $i ) {

if (i==3){continue;}

echo "The number is ".$i;

echo "

";

}

?>