hesunfly / weather
天气查询扩展包
1.0.1
2019-01-07 03:03 UTC
Requires
- guzzlehttp/guzzle: ^6.3
This package is auto-updated.
Last update: 2025-03-10 00:59:56 UTC
README
PHP天气查询扩展组件
安装
composer require hesunfly/weather
使用
使用前需要在高德地图开放平台申请天气查询接口的key
代码示例
基本使用:
- 获取实时天气:
use Hesunfly\Weather\Weather;
$weather = new Weather('高德地图key');
$weather->currenct('城市名称');
- 获取预告天气:
use Hesunfly\Weather\Weather;
$weather = new Weather('高德地图key');
$weather->forecast('城市名称');
- 获取xml形式的数据:
use Hesunfly\Weather\Weather;
$weather = new Weather('高德地图key');
$weather->currenct('城市名称', 'xml');
License
MIT