Weather

基于 高德开放平台 的 PHP 天气信息组件。

$ composer require vasar/weather -vvv

配置

在使用本扩展之前,你需要去 高德开放平台 注册账号,然后创建应用,获取应用的 API Key。

使用

use VasarWeatherWeather; $key = 'xxxxxxxxxxxxxxxxxxxxxxxx'; $w = new Weather($key);

获取实时天气

$response = $w->getLiveWeather('深圳');

获取近期的天气预报

$response = $w->getForecastWeather('深圳');

获取 XML 格式返回值

$w->getWeather('深圳', 'base', 'XML');

参数说明

array | string getWeather($city, $type='base', $format = 'json')

$city - 城市名,比如:“深圳”; $type - 返回内容类型:base: 返回实况天气 / all:返回预报天气; $format - 输出的数据格式,默认为 json 格式,当 output 设置为 “xml” 时,输出的为 XML 格式的数据。

array | string getLiveWeather($city, $format = 'json')

array | string getForecastWeather($city, $format = 'json'))

$city - 城市名,比如:“深圳”; $format - 输出的数据格式,默认为 json 格式,当 output 设置为 “xml” 时,输出的为 XML 格式的数据。

在 Laravel 中使用

在 Laravel 中使用也是同样的安装方式,配置写在 config/services.php 中:

. 'weather' => [ 'key' => env('WEATHER_API_KEY'), ],

然后在 .env 中配置 WEATHER_API_KEY

WEATHER_API_KEY=xxxxxxxxxxxxxxxxxxxxx

可以用两种方式来获取 VasarWeatherWeather 实例:

方法参数注入

public function show(Request $request, Weather $weather, $city) { return $weather->getWeather($city); }

服务名访问

public function show(Request $request, $city) { return app('weather')->getWeather($city); }

参考

高德开放平台天气接口

License

MIT

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。
3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考学习用!
4、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。