如何印 json_decode 第二層?

這是我 json_decode 對方回給我的 json 結果

stdClass Object
(
    [attributes] => Array
        (
            [0] => stdClass Object
                (
                    [attribute-id] => 5c6186217d4d0765152e42f7
                    [attribute-type] => skill
                    [parent-attribute-id] => 
                    [parent-attribute-name] => 
                    [name] => rgargrereshserhersh
                    [slogan] => srehsrehrsehsrehre
                    [description] => hrehrehresserhgserhserh
                    [time-created] => 2019-02-11T14:54:57.073Z
                    [available] => 1
                    [time-available] => 2019-02-11T14:26:41.348Z
                    [image-path] => http://127.0.0.1:9002/images/attribute/icon/15498952015c61862103aea-icon.JPG
                    [cover-path] => http://127.0.0.1:9002/images/attribute/cover/15498952015c61862103aea-cover.jpg
                )

        )

)

請問我要怎麼印出 name?
他第一層有 「attributes」
我原本的做法是

<?=$data->{'name'};?>

但是不行⋯⋯多了第一層的「attributes」讓我沒辦法印,如何印第二層的KEY?
PS:只會有一筆,所以不會用 foreach


慕桂英3389331
浏览 534回答 2
2回答

HUWWW

或者&nbsp;json_decode&nbsp;成 array:$data&nbsp;=&nbsp;json_decode($jsonStr,&nbsp;true);或者直接取对象成员:$data->attributes[0]->name或者遍历:foreach&nbsp;($data->attributes&nbsp;as&nbsp;$item)&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;var_dump($item->name); }

翻翻过去那场雪

json_decode(xxx,&nbsp;true)官方文档 json_decodeassoc当该参数为 TRUE 时,将返回 array 而非 object 。
打开App,查看更多内容
随时随地看视频慕课网APP