使用php解析 JSON 数据的一段代码

发布时间:2020-06-15编辑:脚本学堂
现在很多网站通过开放 API 来提供数据,它总是能够知道如何解析 API 数据的各种传送格式,包括 JSON,XML 等。

现在很多网站通过开放 API 来提供数据,它总是能够知道如何解析 API 数据的各种传送格式,包括 JSON,XML 等。

复制代码 代码如下:
<?php
$json_string='{"id":1,"name":"foo","email":"foo@foobar.com","interest":["wordpress","php"]} ';
$obj=json_decode($json_string);
echo $obj->name; //prints foo
echo $obj->interest[1]; //prints php
?>