2017-05-21 55 views
0

我從OpenWeatherMap中獲得以下對象。現在我可以獲得風速和風向。如何在openweathermap對象中獲取描述

$weather->wind->speed 
$weather->wind->direction 

,並返回

0.71米/秒62.5018 ENE

但我想風向描述東北偏東。我嘗試了以下,但沒有一個工作。我怎樣才能得到風向的描述。

$weather->wind->direction->descption 
$weather->wind->direction['desctiption'] 

enter image description here

回答

0

在這兩個你嘗試,知道「描述」拼寫錯誤這就是爲什麼它沒有工作。

您可以更正拼寫,然後再試一次,但你應該能夠做到:

$weather->wind->direction.description 
0

this example,我只需要使用getDescription()

$weather->wind->direction->getDescription(); 
相關問題