用PHP显示API数组的部分


Displaying parts of an API Array with PHP

因此,我正在使用API车辆,我遇到了障碍,希望从那些对此有更多经验的人那里获得一些意见。。。首先,我将展示从API调用返回的数据示例。

Array
(
    [make] => Array
    (
        [id] => 200003644
        [name] => Chrysler
        [niceName] => chrysler
    )
[model] => Array
    (
        [id] => Chrysler_200
        [name] => 200
        [niceName] => 200
    )
[engine] => Array
    (
        [equipmentType] => ENGINE
        [availability] => USED
        [cylinder] => 6
        [size] => 3.6
        [configuration] => V
        [fuelType] => flex-fuel (unleaded/E85)
        [horsepower] => 295
        [type] => flex-fuel (FFV)
        [code] => ERB
        [rpm] => Array
            (
                [horsepower] => 6350
                [torque] => 4250
            )
        [valve] => Array
            (
                [gear] => double overhead camshaft
            )
    )
[transmission] => Array
    (
        [equipmentType] => TRANSMISSION
        [availability] => USED
        [transmissionType] => AUTOMATIC
    )
[drivenWheels] => front wheel drive
[numOfDoors] => 4
[options] => Array
    (
        [0] => Array
            (
                [category] => Safety
                [options] => Array
                    (
                        [0] => Array
                            (
                                [id] => 200741607
                                [name] => SafetyTec
                                [description] => Adaptive Cruise Control with Stop & Go; Advanced Brake Assist; Automatic high beam control; Blind Spot and Cross Path Detection; Full Speed Forward Collision Warning Plus; Lane Departure Warning Plus; Parallel and Perpendicular Park Assist with Stop; Rain sensitive windshield wipers
                                [equipmentType] => OPTION
                                [availability] => All C/All C Platinum
                            )
                    )
            )
        [1] => Array
            (
                [category] => Package
                [options] => Array
                    (
                        [0] => Array
                            (
                                [id] => 200741480
                                [name] => Quick Order Package 26N (Fleet)
                                [description] => Vehicle with standard equipment
                                [equipmentType] => OPTION
                                [availability] => All C
                            )
                        [1] => Array
                            (
                                [id] => 200741610
                                [name] => Premium Group
                                [description] => 115V auxiliary power outlet; Exterior mirrors with memory; Heated 2 tone leather steering wheel; Luxury door trim panel; Premium leather trimmed ventilated front seats with leather seat cushion; Radio/driver seat/Climate control with memory; Real wood/bronze chrome interior accents
                                [equipmentType] => OPTION
                                [availability] => All C/All C Platinum
                            )
                        [2] => Array
                            (
                                [id] => 200741715
                                [name] => Premium Lighting Group
                                [description] => HID headlamps with LED daytime running lights; LED fog lamps
                                [equipmentType] => OPTION
                                [availability] => All S/All C
                            )
                        [3] => Array
                            (
                                [id] => 200741805
                                [name] => Navigation And Sound Group I
                                [description] => 506 watt amplifier; SiriusXM traffic with 5-year of included service; Travel Link Service with 5-year of included service; 9 amplified speakers with subwoofer; GPS navigation; HD radio; Uconnect 8.4AN AM/FM/SiriusXM/Hard disc drive/Bluetooth/Navigation
                                [equipmentType] => OPTION
                                [availability] => All C
                            )
                    )
            )
)

因此,如果我把这些数据存储在一个名为$data的变量中,例如,我可以做这样的事情,它可以工作:

foreach ($data['options'] as $options) {
    echo $options['category'];
}

这会还给我"安全"answers"包裹"。

然而,如果我想得到汽车的品牌,我会做这样的事情:

foreach ($data['make'] as $make) {
     echo $make['name'];
}

它只是给我返回一个值:Cc(make name中的大写C,make niceName中的小写C)。它为什么要这么做?我做错了什么?

谢谢!

只有一个'make',所以我认为您只需要这个(无循环):

echo $data['make']['name'];

$data['make']的每个元素都是string(可能是integer),但不是$data['options']的每个元素一样是array。所以,在$data['make']的情况下,不能使用[]表示法。

只是:

foreach ($data['make'] as $make) {
     echo $make;
}

会做你需要的事。