vasar/weather 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vasar/weather

Composer 安装命令:

composer require vasar/weather

包简介

A weather SDK

README 文档

README

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

Build Status StyleCI

$ composer require vasar/weather -vvv

配置

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

使用

use Vasar\Weather\Weather;

$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

可以用两种方式来获取 Vasar\Weather\Weather 实例:

方法参数注入

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

统计信息

  • 总下载量: 6
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-01-27

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固