oscarfabian / prueba
Prueba DIMTEC
dev-master
2017-11-14 18:03 UTC
Requires
- php: >=5.3.0
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