以下举例说明
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 循环指令。
Statement: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