douyanqu9722 2015-09-20 12:20
浏览 30
已采纳

在PHP中从JSON中提取值

I am currently experimenting with the Discogs API, using PHP. My query against their API is returned as JSON, which I can decoding using:

$trackMeta = json_decode($trackMeta, true);

I'd then like to be able to access certain elements within the data that is returned. Using print_r($trackMeta);outputs the below data:

Array ( [pagination] => Array ( [per_page] => 1 [pages] => 7 [page] => 1 [urls] => Array ( [last] => http://api.discogs.com/database/search?artist=siren&q=snorkel&per_page=1&page=7 [next] => http://api.discogs.com/database/search?artist=siren&q=snorkel&per_page=1&page=2 ) [items] => 7 ) [results] => Array ( [0] => Array ( [style] => Array ( [0] => Drum n Bass ) [thumb] => http://api-img.discogs.com/cf1HxM29IXQKNsSdrwYioa0uEeI=/fit-in/150x150/filters:strip_icc():format(jpeg):mode_rgb()/discogs-images/R-3581480-1336678182-5777.jpeg.jpg [format] => Array ( [0] => Vinyl [1] => 12" [2] => 45 RPM ) [country] => UK [barcode] => Array ( ) [uri] => /Siren-21-Vicious-Circle-Snorkel-SPY-Remix-Solitude/master/433189 [community] => Array ( [want] => 66 [have] => 81 ) [label] => Array ( [0] => Siren Records ) [catno] => SIREN001 [year] => 2012 [genre] => Array ( [0] => Electronic ) [title] => Siren (21) / Vicious Circle (3) - Snorkel (S.P.Y. Remix) / Solitude [resource_url] => http://api.discogs.com/masters/433189 [type] => master [id] => 433189 ) ) ) 

When trying to use a foreach loop on $trackMeta, I can only return 171 which I believe relates to per_page pages and page.

How can I access data deeper in this array? For example values such as thumb or year or genre?

  • 写回答

1条回答 默认 最新

  • douyin2435 2015-09-20 13:45
    关注

    $trackMeta is an associative array:

    $trackMeta = array (
        'pagination' => array (
            'per_page' => 1,
            'pages' => 7,
            'page' => 1,
            'urls' => array (
                'last' => 'http://api.discogs.com/database/search?artist=siren&q=snorkel&per_page=1&page=7',
                'next' => 'http://api.discogs.com/database/search?artist=siren&q=snorkel&per_page=1&page=2'
            ),
            'items' => 7
        ),
        'results' => array (
            0 => array (
                'style' => array (
                    0 => 'Drum n Bass'
                ),
                'thumb' => 'http://api-img.discogs.com/cf1HxM29IXQKNsSdrwYioa0uEeI=/fit-in/150x150/filters:strip_icc():format(jpeg):mode_rgb()/discogs-images/R-3581480-1336678182-5777.jpeg.jpg',
                'format' => array (
                    0 => 'Vinyl',
                    1 => '12"',
                    2 => '45 RPM'
                ),
                'country' => 'UK',
                'barcode' => array ( ),
                'uri' => '/Siren-21-Vicious-Circle-Snorkel-SPY-Remix-Solitude/master/433189',
                'community' => array (
                    'want' => 66,
                    'have' => 81
                ),
                'label' => array (
                    0 => 'Siren Records'
                ),
                'catno' => 'SIREN001',
                'year' => 2012,
                'genre' => array (
                    0 => 'Electronic'
                ),
                'title' => 'Siren (21) / Vicious Circle (3) - Snorkel (S.P.Y. Remix) / Solitude',
                'resource_url' => 'http://api.discogs.com/masters/433189',
                'type' => 'master',
                'id' => 433189
            )
        )
    );
    

    For example, you can access thumb with the following code:

    print_r($trackMeta['results'][0]['thumb']);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)