我如何从该URL获取JSON数据?

时间:2019-02-02 19:19:26

标签: php json

我有一个URL,它返回一个JSON对象是这样的:

{"ip":"192.168.48.68"}

我想要得到的ip的值。所以,我怎么能找回它通过PHP?

1 个答案:

答案 0 :(得分:2)

使用json_decode方法:

$json = YOUR_JSON_OBJECT;
$ip = json_decode($json, true);
//then you can get the ip using its index in the array
$ip["ip"] //192.168.48.68