dounabi6295 2014-05-15 06:36
浏览 29
已采纳

如何从PHP读取JSON结果

How to access element of below json output using php ..

{
    "ISBN:9781430215752": {
        "bib_key": "ISBN:9781430215752",
        "preview":
                "restricted",
        "preview_url":
                "https://archive.org/details/linuxrecipesforo00kuhn",
        "info_url": "https://openlibrary.org/books/OL23936576M/Linux_recipes_for_Oracle_DBAs",
        "details": {
            "lc_classifications": ["QA76.9.D3 K84 2009"],
            "latest_revision": 2,
            "ocaid": "linuxrecipesforo00kuhn",
            "contributions": ["Kim, Charles.", "Lopuz, Bernard."],
            "source_records": ["marc:marc_loc_updates/v37.i44.records.utf8:10470755:1047"],
            "title":
                    "Linux recipes for Oracle DBAs",
            "languages": [{
                    "key": "/languages/eng"
                }],
            "subjects": ["Linux", "Oracle (Computer file)", "Relational databases", "Database management"],
            "publish_country": "cau",
            "by_statement": "Darl Kuhn, Charles Kim, Bernard Lopuz.",
            "type": {
                "key": "/type/edition"
            },
            "revision": 2,
            "other_titles": ["Linux recipes for Oracle DataBase Administrators"],
            "publishers": ["Apress", "Distributed to the book trade by Springer-Verlag"],
            "last_modified": {
                "type": "/type/datetime",
                "value": "2014-04-06T06:55:36.956977"
            },
            "key": "/books/OL23936576M",
            "authors": [{
                    "name": "Darl Kuhn",
                    "key": "/authors/OL1484587A"
                }],
            "publish_places": ["Berkeley, CA", "New York"],
            "oclc_number": ["243543902"],
            "pagination": "xxv, 501 p. :",
            "created": {
                "type": "/type/datetime",
                "value": "2009-11-24T23:42:39.524606"
            },
            "dewey_decimal_class": ["005.75/65 22", "005.26/8"],
            "notes": {
                "type": "/type/text",
                "value": "Includes index."
            },
            "number_of_pages": 501,
            "isbn_13": ["9781430215752"],
            "lccn": ["2009277832"],
            "isbn_10": ["1430215755"],
            "publish_date": "2008"
        }
    }
}

I tried using below code,
it doesn't work.

$json = json_decode($body);

echo $json->ISBN:9780980200447->info_url;

It's giving an error..

Is there any other easy way to read all elements?

  • 写回答

4条回答 默认 最新

  • dtk31564 2014-05-15 06:43
    关注

    You are on the right track. : is just an invalid character for a property and must be handled special.

    echo $json->{'ISBN:9781430215752'}->info_url;
    

    will get you the expected result.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改