iidestiny / weather
Weather acquisition module
1.0.0
2018-08-20 09:52 UTC
Requires
- guzzlehttp/guzzle: ^6.3
- mockery/mockery: ^1.1
- phpunit/phpunit: ~5
This package is auto-updated.
Last update: 2024-10-29 05:46:37 UTC
README
天气查询组件
安装
$ composer require iidestiny/weather -vvv
配置
百度开放平台后台获取 AK
使用
use IiDestiny\Weather\Weather; $ak = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx'; $weather = new Weather($ak); // 返回数组格式 $response = $weather->getWeather('深圳'); // 批量获取 $response = $weather->getWeather('深圳|北京'); // 返回 XML 格式 $response = $weather->getWeather('深圳', 'xml'); // 按坐标获取 $response = $weather->getWeather('116.30,39.98', 'json'); // 批量坐标获取 $response = $weather->getWeather('116.43,40.75|120.22,43,33', 'json'); // 自定义坐标格式(coord_type) $response = $weather->getWeather('116.306411,39.981839', 'json', 'bd09ll');
参数说明
array | string getWeather(string $location, string $format = 'json', string $coordType = null)
- $location 地点,中文或者坐标地址,多个用斗角逗号隔开
- $format 返回格式, json(默认)/xml, json 将会返回数组格式,xml 返回字符串格式。
- $coordType 坐标格式,允许的值为bd09ll、bd09mc、gcj02、wgs84,默认为 gcj02 经纬度坐标。
- 详情说明请参考官方:http://lbsyun.baidu.com/index.php?title=car/api/weather
Laravel 中使用
在 .env
配置文件中添加配置 (BAIDU_SN) 可选
BAIDU_AK=xxxxx
BAIDU_SN=xxxxx
然后方法注入
function index(\IiDestiny\Weather\Weather $weather) { return $weather->getWeather('北京'); }
License
MIT