19

经过几个小时的混乱,出汗和拔头发后,我仍然无法访问这些值。我想遍历第一级数组,这很简单,有一个基本的“foreach”循环,但我似乎无法进入第二个子数组上的“['合适性']”数组。我环顾四周,但除了似乎没有深入研究循环的真正基本数组教程之外似乎什么都没有。

我正在尝试访问嵌套/子数组中的值,即'['Species_name']'。

我不想使用关联键,因为排序有点问题。

Array
(
    [0] => Array
        (
            [id] => 1
            [name] => Bradeley Hall Pool
            [postcode] => CW1 5QN
            [lat] => 53.10213
            [lon] => -2.41069
            [size] => 1.60
            [pegs] => 21
            [distance] => 26.6
        )

    [1] => Array
        (
            [id] => 2
            [name] => Farm Pool
            [postcode] => CW9 6JQ
            [lat] => 53.320502
            [lon] => -2.549049
            [size] => 0.88
            [pegs] => 8
            [distance] => 15.4
            [suitability] => Array
                (
                    [0] => Array
                        (
                            [fk_water_id] => 2
                            [fk_species_id] => 4
                            [species_name] => Barbel
                            [species_rating] => 1
                            [record_id] => 1
                            [weight_kg] => 2.721554
                            [length_cm] => 40
                            [height_cm] => 30
                        )
                )
       )
)
4

4 回答 4

26

可能让您感到困惑的是,适用性是一个数组数组,而不仅仅是一个数组,因此在一个示例中,您想要获取第一个第二个顶级元素的 species_name 属性,您可以使用类似

$array[1]["suitability"][0]["species_name"];

值得注意的是,您的第一个数组不包含“适用性”值,因此无法访问。在 foreach 循环中,您可以使用类似于以下的构造:

foreach($array as $value){
    if (isset($value["suitability"])){
        echo $value["suitability"][0]["species_name"];
    }
}
于 2013-06-17T01:56:30.087 回答
1

你可以看看PHP: RecursiveArrayIterator 类

这允许您迭代多个嵌套的 ArrayIterator。如果您没有使用任何 ArrayIterator,那么您应该考虑尝试一下。

于 2013-06-17T02:39:55.693 回答
1

Iracicot 的回答帮助我找到了使用 RecursiveIterator 类访问递归数组值的方法,如下所示。根据http://php.net/manual/en/class.recursiveiteratoriterator.php,我的解决方案最终使用了更有用的 RecursiveIteratorIterator 类。请记住一个非常有用的事实,即最终产品是一个扁平阵列,我个人发现它更容易使用。

<table style="border:2px;">
  <tr>
    <th>Time</th>
    <th>Service Number</th>
    <th>Destination</th>
  </tr>
<?php 
foreach($stops as $buses){
       $iterator = new RecursiveIteratorIterator(new RecursiveArrayIterator($buses));
       $bus = (iterator_to_array($iterator,true)); 
       print('<tr><td>'.$bus['AimedDepartureTime'].'</td><td>'.$bus['PublishedLineName'].'</td><td>'.$bus['DirectionName'].'</td></tr>');
}
?>
</table>
于 2018-04-27T12:00:51.247 回答
1

要从多维数组中获取嵌套元素值(可选回退到默认值),您可以使用此数组库中的get 方法

Arr::get($array, "$index1.suitability.$index2.species_name")

// Or using array of keys
Arr::get($array, [$index1, 'suitability', $index2, 'species_name'])
于 2018-09-05T23:20:13.367 回答