如何在 CodeIgniter 中导入和使用 JSON?例如,下面的代码片段是用 Python 编写的,它将Reddit 的首页转换为 JSON 并打印出密钥:
reddit_front = r"""{"kind": "Listing", "data": {"modhash": "", "children": ... """
import json
j = json.loads(reddit_front)
print j.keys()
如何在 CodeIgniter 中导入和使用 JSON?例如,下面的代码片段是用 Python 编写的,它将Reddit 的首页转换为 JSON 并打印出密钥:
reddit_front = r"""{"kind": "Listing", "data": {"modhash": "", "children": ... """
import json
j = json.loads(reddit_front)
print j.keys()