我想运行此循环并将值放入for循环内定义的新变量中阶段=阶段1,阶段3,阶段xxfor ($i=0;$i<=count($name);$i++) {$current[$i] = $count[$i];$stage = array_replace($stage, $stage1);}我必须为我的脚本运行多个for循环。上面的for循环如果要满足某些条件,我首先要对所有count($ name)运行它。例:我想要省略$ name [3]并再次运行循环。要么省略$ name [6]并再次运行循环。将新值放在$current[$i] = $count[$i];$stage = array_replace($stage, $stage1);结果值:最后,我想基于省略的值获取下面提到的变量的新值,当我省略任何值时,变量都会很好地改变其值。$current[$i] = $count[$i];$stage = array_replace($stage, $stage1);要么**omit $name[3]** $current[$i] = $count[$i]; $stage = array_replace($stage, $stage4);要么**omit $name[xx]** $current[$i] = $count[$i]; $stage = array_replace($stage, $stagexx);编辑:如果我忽略值,for循环的新面貌是什么。例如:如果($ i 3)我想再次运行循环,并忽略值= 3for ($i=0;$i<=count($name);$i++) { $current[$i] = $count[$i]; $stage = array_replace($stage, $stage1); }我想知道如何用省略的值再次编写for循环吗? 最佳答案 如果要在某些情况下跳过循环内的执行并仍然继续循环,则应使用continue语句。例如:<?php for ($i = 0; $i < 5; ++$i) { if ($i == 2) continue; print "$i\n"; }?>关于php - 如何有条件地运行循环,省略某些值,PHP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35850797/
10-13 00:55