0

如何在 CodeIgniter 中导入和使用 JSON?例如,下面的代码片段是用 Python 编写的,它将Reddit 的首页转换为 JSON 并打印出密钥:

reddit_front = r"""{"kind": "Listing", "data": {"modhash": "", "children": ...  """

import json
j = json.loads(reddit_front)
print j.keys()
4

1 回答 1

2

如果你准备好一个 json 字符串,你可以在 php 中使用下面的函数来读取 json 字符串。

$result is the json string for example

$res = json_decode($result,true);

现在使用 foreach 循环 $res 以打印值

于 2013-04-27T13:02:24.277 回答