如何在CodeIgniter中导入和使用JSON?例如,下面的代码片段是用Python编写的,并将Reddit's front page转换为JSON并打印键:
reddit_front = r"""{"kind": "Listing", "data": {"modhash": "", "children": ... """
import json
j = json.loads(reddit_front)
print j.keys()
答案 0 :(得分:2)
如果你准备好了json字符串,你可以在php中使用以下函数来读取json字符串。
$result is the json string for example
$res = json_decode($result,true);
现在使用foreach遍历$ res来打印值