Home > php教程 > php手册 > PHP中break及continue两个流程控制指令区别分析

PHP中break及continue两个流程控制指令区别分析

WBOY
Release: 2016-06-13 12:10:34
Original
999 people have browsed it

以下举例说明
break 用来跳出目前执行的循环,并不再继续执行循环了。

复制代码 代码如下:


$i = 0;
while ($i if ($arr[$i] == "stop") {
break;
}
$i++;
}
?>


continue 立即停止目前执行循环,并回到循环的条件判断处,继续下一个循环。

复制代码 代码如下:


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; // 这里显示数组中的记录
}
?>


注意的是:PHP中不能使用 goto 循环指令。
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template