为什么这个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>

另外,为什么我会出现这个非对象错误?

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

还有

$country = $decode['country'];

而不是

$country = $decode[country];

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

最新更新