cannonsir / weather
A weather SDK
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/cannonsir/weather
Requires
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- mockery/mockery: ^1.2
- phpunit/phpunit: ^8.2
This package is auto-updated.
Last update: 2025-10-29 03:11:16 UTC
README
基于 高德开放平台 的 PHP 天气信息组件。
安装
$ composer require cannonsir/weather -vvv
使用
在使用本扩展之前,你需要去 高德开放平台 注册账号,然后创建应用,获取应用的 API Key
use CannonSir\Weather\Weather; $weather = new Weather('your api key');
获取实时天气
$weather->getWeather('成都') $weather->getLiveWeather('成都', 'json')
返回结果示例:
{
"status": "1",
"count": "1",
"info": "OK",
"infocode": "10000",
"lives": [
{
"province": "四川",
"city": "成都市",
"adcode": "510100",
"weather": "晴",
"temperature": "24",
"winddirection": "东",
"windpower": "≤3",
"humidity": "94",
"reporttime": "2019-07-17 23:52:01"
}
]
}
获取近期天气预报
$weather->getWeather('成都', 'forecasts');
返回结果示例
{
"status": "1",
"count": "1",
"info": "OK",
"infocode": "10000",
"forecasts": [
{
"city": "成都市",
"adcode": "510100",
"province": "四川",
"reporttime": "2019-07-17 23:52:01",
"casts": [
{
"date": "2019-07-17",
"week": "3",
"dayweather": "多云",
"nightweather": "晴",
"daytemp": "29",
"nighttemp": "23",
"daywind": "无风向",
"nightwind": "无风向",
"daypower": "≤3",
"nightpower": "≤3"
},
{
"date": "2019-07-18",
"week": "4",
"dayweather": "阵雨",
"nightweather": "阵雨",
"daytemp": "31",
"nighttemp": "23",
"daywind": "无风向",
"nightwind": "无风向",
"daypower": "≤3",
"nightpower": "≤3"
},
{
"date": "2019-07-19",
"week": "5",
"dayweather": "阵雨",
"nightweather": "阵雨",
"daytemp": "31",
"nighttemp": "24",
"daywind": "无风向",
"nightwind": "无风向",
"daypower": "≤3",
"nightpower": "≤3"
},
{
"date": "2019-07-20",
"week": "6",
"dayweather": "阵雨",
"nightweather": "小雨",
"daytemp": "33",
"nighttemp": "23",
"daywind": "无风向",
"nightwind": "无风向",
"daypower": "≤3",
"nightpower": "≤3"
}
]
}
]
}
通过传递第最后一个参数可设置返回值类型:
json/xml默认json格式
参数说明
array|string getWeather(string $city, string $type = 'live', string $format = 'json')
- $city - 城市名,比如:“深圳”;
- $type - 返回内容类型:live: 返回实况天气 / forecasts: 返回预报天气;
- $format - 输出的数据格式,默认为 json 格式,当 format 设置为 “xml” 时,输出的为 XML 格式的数据。
在 Laravel 中使用
在Laravel中使用也是同样的安装方式,配置写在 config/services.php 中:
'weather' => [ 'key' => env('AMAP_API_KEY') ]
然后在 .env 文件中配置 AMAP_API_KEY
AMAP_API_KEY=xxxxxxxxxxxxxxxxxxxxx
参考
License
MIT