我正在使用:
$location = file_get_contents($mapurl);
以json响应:
{
"results" : [],
"status" : "ZERO_RESULTS"
}
如何为给定密钥提取值?
我试过了:
$status = $location::get('status');
但这会引发错误。
答案 0 :(得分:3)
尝试
$location = json_decode(file_get_contents($mapurl));
$status = $location->status;
file_get_contents
返回一个字符串,您必须调用json_decode
将其转换为对象,然后才能访问status属性。