oscarfabian/prueba

Prueba DIMTEC

安装: 6

依赖项: 0

建议者: 0

安全性: 0

星星: 0

关注者: 0

分支: 0

开放问题: 0

类型:项目

dev-master 2017-11-14 18:03 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:01:33 UTC


README

dimtec项目

安装

该库可以在Packagist上找到。推荐使用Composer进行安装和使用。在GitHub

composer create-project oscarfabian/prueba=dev-master

通过城市名称获取天气的示例


require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload

use CallWeather\callApi;

$city  = 'City';
$appID = callApi::setAppId('Your-app-id');
$weatherCity = callApi::getCityWeather($city);
callApi::pr($weatherCity); //use to print data

通过坐标获取天气的示例


require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload

use CallWeather\callApi;

$appID = callApi::setAppId('Your-app-id');
$lat = 'latitude';
$lon = 'longitude';
$weatherCoor = callApi::getCoorWeather($lat,$lon);
callApi::pr($weatherCity); //use to print data