"test", "1" => "test1", "2" => "test2");$num = count($arr);for($i">
当前位置:Gxlcms > PHP教程 > 多重循环下怎么防止变量超过数组索引

多重循环下怎么防止变量超过数组索引

时间:2021-07-01 10:21:17 帮助过:20人阅读

多重循环下如何防止变量超过数组索引
PHP code

$arr = array(
    "0" => "test",
    "1" => "test1",
    "2" => "test2"
);

$num = count($arr);

for($i=0;$i<$num;){
    for($k=0;$k<5;$k++){
          //第一层循环自增在这里,如何防止$i超过索引?
          //echo $arr[$i];
          //$i++
    }
}



------解决方案--------------------
foreach ($arr as $index => $value)

人气教程排行