无法获取非对象PHP的属性

时间:2016-03-16 02:02:07

标签: php json curl

我无法仅显示wtype_meteoalarm_name的显示KV

$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_URL, 'http://api.wunderground.com/api/1e6a89f0a3aa092d/alerts/q/zmw:00000.1.16172.json');

$result = curl_exec($ch);

curl_close($ch);

$obj = json_decode($result);

echo $result->wtype_meteoalarm;

获取错误:

  

注意:尝试在第15行的C:\ xampp \ htdocs \ CurlTest \ Index.php中获取非对象的属性

我在做什么,这是错的?

0 个答案:

没有答案