$evens = array(1, 2, 3, 4, 5, 6);
foreach ($evens as $index=>$value){
if ($value % 2 == 0){
echo "<br> Even numbers are :$value";
}
}
大家好,
我只是在阅读有关foreach循环的内容,我只是想知道这意味着什么:
$ evens as $ index =&gt; $ value
$ evens =我的阵列 $ value =随机命名(由我)包含结果的变量 但什么是$ index?是PHP中的保留关键字还是......?