为什么这个json解码打印到屏幕?

时间:2015-12-11 11:32:03

标签: php json

这段PHP发生了一些非常奇怪的事情。它不是填写$ country变量,而是将整个json打印到浏览器窗口。我不明白为什么要这样做。

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://ipinfo.io/".$this_ip."/json");
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36");
$headers = array();
$headers[] = 'Referer: http://www.example.com';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$json = curl_exec ($ch);
curl_close ($ch);

 $decode = json_decode($json,true);
 $country = $decode[country];

这是它吐出的整个错误:

<body style="height:100%; overflow:auto; padding:0px; margin:0px;">{
  "ip": "8.8.8.8",
  "hostname": "google-public-dns-a.google.com",
  "city": "Mountain View",
  "region": "California",
  "country": "US",
  "loc": "37.3860,-122.0838",
  "org": "AS15169 Google Inc.",
  "postal": "94040"
}<br>
<b>Notice</b>:  Trying to get property of non-object in <b>/var/www/html/example.php</b> on line <b>59</b><br>

另外,为什么我会收到此非对象错误?

2 个答案:

答案 0 :(得分:8)

curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);添加到您的卷曲

答案 1 :(得分:1)

另外

$country = $decode['country'];

而不是

$country = $decode[country];

请注意您如何访问$ decode数组的国家/地区密钥。