我使用 JSON 获取了一些数据。然后我使用 json_decode() 将结果转换为 PHP 数组。现在,我试图获得一些价值。我正在收到通知。
$html = $curl->get($url); // $html contains json result
$result = json_decode($html); //converting to php array
//the output is something like this
{
"query":
"results":{
"Result":[
{
"BusinessUrl":"http://www.aplus.net/",
-----------
------------
}]
}
现在,如果我尝试像这样获取业务 url
$result->query->results->Result[0]->BusinessUrl
这会发出类似的通知
Notice: Trying to get property of non-object
请帮助我。