Skip to content

Get current weather by zipcode

Compare
Choose a tag to compare
@cmfcmf cmfcmf released this 07 Aug 13:38
feca123

You can now retrieve the current weather using a zipcode (see here for official OWM documentation).

// Get current temperature from zip code (Hyderabad, India).
$weather = $owm->getWeather('zip:500001,IN', $units, $lang);
echo 'City: '.$weather->city->name;
echo 'Temperature: '.$weather->temperature;