$body = file_get_contents($url); //defined somewhere else
$json = json_decode($body);
if(isset($json->SearchResponse->Errors))
throw new Exception ("search Error");
$json->SearchResponse->Errors
指的是什么?我的意思是这是否会查看正文(或)searchresponse 的内容并且错误是对象..?