我拥有的数组如下所示:
$items = array();
$items["GB225"] = array (
"name" => "AAA",
"img" => "aaa.jpg",
"includes" => array(
$things[08] = array (
"name" => "xxx",
"text" => "xxxx xx xxxx x x x xxx x x"
);
$things[77] = array (
"name" => "yyy",
"text" => "yyyyyy yy yyyyyy y yy yyyyy"
) ;
$things[42] = array (
"name" => "zzz",
"text" =>"zz zzzz zzz z z zzz z"
);
);
);
我需要得到的是每个第二个数组元素的 ID 和名称(我需要 ID = 08 的 xxx,ID = 77 的 yyy,ID = 42 的 zzz)最好使用 PHP。
到目前为止,我最好的猜测是
foreach ($items["includes"] as $thing_id => $thing) {
echo $thing["name"];
echo $thing_id;
};
但这只会给我与“名称”相关联的 ID 0、1 和 2。
我该如何正确地做到这一点?