-
php解析 JSON 数据
网络 2013/10/4 10:02:20大多数流行的 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
阅读(6123) 分享(0)
上一篇: php图片上传类,支持加水印,生成略缩图
下一篇: 写入文本文件txt的PHP代码