我有一个动态加载json的url。我需要使用php来引入json并使用json_decode从中获取信息。到目前为止,我还没有弄清楚如何将实际的json放入我的php中。我需要做什么? php有“内容”命令吗?
现在我正在尝试:
print(json_decode('http://theurl.com'));
答案 0 :(得分:2)
echo json_decode(file_get_contents('http://theurl.com'));
您还可以使用cURL而不是file_get_contents
来获得额外的速度和控制,但与file_get_contents
相比,它相对复杂,特别是如果您之前从未使用过它。