php 循环 案例分析,php:Break与Continue如何跳出循环的实例分析

有时,您可能希望让无条件循环的开始,并允许括号内的语句来决定何时退出循环。

有两个特殊的语句可用在循环使用:中断和继续。

break语句终止或For循环的同时,继续执行现行的代码如下循环后(如有)。或者,

你可以把一个数字后,折价关键字,说明如何循环结构的多层次,以摆脱。这样,埋

藏在一份声明中深层嵌套的循环可以打破最外层循环。<?php

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循环的同时,继续对下一个迭代循环的执行<?php

echo "

Example of using the Continue statement:

";

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

if (i==3){continue;}

echo "The number is ".$i;

echo "
";

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值