详细说明已经说过的一点.
原文链接:https://www.f2er.com/php/132679.html假设你知道PHP中的数组.这是一个真正的一种方式,在给定一个索引的同一个变量下分组“列表”的项目 – 通常是从0开始的数字整数索引.说我们想制作一个索引列表英文术语,
Zero One Two Three Four Five
在PHP中使用数组表示这一点可以这样做:
$numbers = array("Zero","One","Two","Three","Four","Five");
现在,如果我们想要相反的情况呢?将“零”作为关键字,将“0”作为值?将非整数作为PHP中的数组的关键字称为关联数组,其中每个元素都使用“key => value”的语法定义,所以在我们的示例中:
$numbers = array("Zero" => 0,"One" => 1,"Two" => 2,"Three" => 3,"Four" => 4,"Five" => 5);
现在的问题变成:如果要在使用foreach语句时同时要使用键和值,该怎么办?答:相同的语法!
$numbers = array("Zero" => 0,"Five" => 5); foreach($numbers as $key => $value){ echo "$key has value: $value\n"; }
这将显示
Zero has value: 0 One has value: 1 Two has value: 2 Three has value: 3 Four has value: 4 Five has value: 5