subdee / lcn-weather-forecast-bundle
将Forecast.io的天气预报集成到您的Symfony 2项目中。具有API请求归一化和缓存功能。
v1.0.8
2016-10-15 14:59 UTC
README
简单的Forecast.io天气预报Symfony 2集成。MIT许可。
安装
步骤 1:下载Bundle
打开命令行,进入您的项目目录,并执行以下命令以下载此Bundle的最新稳定版本
$ composer require locaine/lcn-weather-forecast-bundle "~1.0"
此命令需要您已全局安装Composer,请参阅Composer文档的安装章节。
步骤 2:启用Bundle
然后,在您的项目中的app/AppKernel.php
文件中添加以下行以启用Bundle
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Lcn\WeatherForecastBundle\LcnWeatherForecastBundle(), ); // ... } // ... }
步骤 3:设置Forecast.io API令牌
将您的免费Forecast.io API令牌粘贴到app/config/parameters.yml中
parameters: ... lcn.weather_forecast_provider.forecast_io.api_token: YOUR_TOKEN ... ### Step 4: Adjust caching (optional) The default cache engine caches the api results in files within the %kernel.cache_dir% directory. You can, however, provide any Cache Provider implementing the [Doctrine Cache](https://github.com/doctrine/DoctrineCacheBundle) interface: In config.yml or services.yml: ```yaml services: ... lcn.weather_forecast.cache: class: Doctrine\Common\Cache\PhpFileCache arguments: [%kernel.cache_dir%] calls: - [setNamespace, ['lcn_weather_forecast']] ...
使用
示例控制器代码
$forecast = $this->container->get('lcn.weather_forecast'); $lat = 53.553521; $lng = 9.948773; $forecastForDay = $forecast->getForToday($lat, $lng); // OR: $forecastForDay = $forecast->getForDay($lat, $lng, strtotime('tomorrow')); echo $forecastForDay->getSummary(); echo $forecastForDay->getIcon(); foreach ($forecastForDay->getHours() as $hour => $forecastForHour) { echo $forecastForHour->getSummary(); echo $forecastForHour->getIcon(); $key = 'temperature'; // $key can be any key from forecast.io api, e.g. time, summary, icon, precipIntensity, precipIntensity, precipProbability, temperature, apparentTemperature, dewPoint, humidity, windSpeed, windBearing, visibility, cloudCover, pressure, ozone echo $forecastForHour->get($key, 'fallback default value'); } $forecastForHour = $forecast->getForCurrentHour($lat, $lng); // OR: $forecastForHour = $forecast->getForHour($lat, $lng, strtotime('+ 1 day 3 hours')); echo $forecastForHour->getSummary(); echo $forecastForHour->getIcon(); $key = 'temperature'; // $key can be any key from forecast.io api, e.g. time, summary, icon, precipIntensity, precipIntensity, precipProbability, temperature, apparentTemperature, dewPoint, humidity, windSpeed, windBearing, visibility, cloudCover, pressure, ozone echo $forecastForHour->get($key, 'fallback default value');