我无法仅显示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中获取非对象的属性
我在做什么,这是错的?