PHP头条
热点:

php解析 JSON 数据


大多数流行的 Web 服务如 twitter 通过开放 API 来提供数据一样,它总是能够知道如何解析 API 数据的各种传送格式,包括 JSON,XML 等等
 代码如下 复制代码
$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

www.phpzy.comtrue/php/7303.htmlTechArticlephp解析 JSON 数据 大多数流行的 Web 服务如 twitter 通过开放 API 来提供数据一样,它总是能够知道如何解析 API 数据的各种传送格式,包括 JSON,XML 等等 代码如下 复制代码 $json_string='{id...

相关文章

    暂无相关文章
相关频道:

PHP之友评论

今天推荐