sohelrana820/weather-forecast-php
Composer 安装命令:
composer require sohelrana820/weather-forecast-php
包简介
PHP wrapper for the Dark Sky API (formerly Forecast.io)
关键字:
README 文档
README
weather-forecast-php is php wrapper implementation of Dark Sky Api (formerly Forecast.io)
Installation
Installation is really easy through composer
composer require sohelrana820/weather-forecast-php
Usage
<?php use SohelRana820\Forecast\Forecast; $forecast = new Forecast(API_KEY); $forecast->setLatitude(DEFAULT_LATITUDE); $forecast->setLongitude(DEFAULT_LATITUDE); $response = $forecast->request(); // Retrieve the current data var_dump($response->getCurrentlyData()); // Retrieve the hourly data var_dump($response->getHourlyData()); // Retrieve the daily data var_dump($response->getDailyData()); // Retrieve weather flags var_dump($response->getFlags());
How to set optional parameters.
This library allow to set all of their optional parameters (lng, units, etc)
<?php $forecast->setOptions($optionsArray = ['units' => 'si']);
You can pass all optional parameter as array . See there all optional parameter official documentation. test
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-02-13