我有一个URL,它返回一个JSON对象是这样的:
{"ip":"192.168.48.68"}
我想要得到的ip
的值。所以,我怎么能找回它通过PHP?
答案 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