fu-hsi / open-weather-map
OpenWeatherMap Class
dev-master
2015-01-16 19:57 UTC
Requires
- php: >=5.4.0
- fu-hsi/file-cache: dev-master
This package is auto-updated.
Last update: 2025-04-17 03:22:26 UTC
README
Simple class for retrieve current weather.
Usage
<?php use FuHsi\OpenWeatherMap\OpenWeatherMap; use FuHsi\FileCache\FileCache; require 'vendor/autoload.php'; $cache = new FileCache(array( 'cacheDir' => __DIR__, 'lifeTime' => FileCache::HOUR * 3, 'format' => FileCache::FORMAT_JSON )); $cityNameKey = 'Warsaw'; $weatherData = $cache->get($cityNameKey, false, function () use ($cityNameKey) { // all below options are default $options = array( 'APPID' => '', // Your API key 'units' => OpenWeatherMap::UNITS_METRIC, 'lang' => OpenWeatherMap::LANG_POLISH ); $weather = new OpenWeatherMap($options); return $weather->getCurrentWeatherByCityName($cityNameKey); }); var_dump($weatherData); ?>
Retrieve weather by City name:
$weatherData = $weather->getCurrentWeatherByCityName('Warsaw');
Retrieve weather by City name and Country code:
$weatherData = $weather->getCurrentWeatherByCityName('Warsaw,pl');
Retrieve weather by City id (recommended):
$weatherData = $weather->getCurrentWeatherByCityName(756135);
Retrieve image:
echo '<img src="' . OpenWeatherMap::getIconUrl($weatherData->weather[0]->icon) . '" alt="' . $weatherData->weather[0]->description . '">';
Install via Composer
{
"require": {
"fu-hsi/open-weather-map": "dev-master"
},
"minimum-stability": "dev"
}