參數名稱 | 類型 | 必填 | 說明 |
---|---|---|---|
city | string | 否 | 城市 |
cityid | int | 否 | 城市ID |
date | string | 是 | 日期 默認為昨天 格式為:2018-01-01 |
參數名稱 | 類型 | 說明 |
---|---|---|
cityid | int | 城市ID |
cityname | string | 城市 |
date | string | 日期 |
weather | string | 天氣 |
temphigh | string | 最高氣溫 |
templow | string | 最低氣溫 |
img | string | 圖片數字 |
humidity | string | 濕度 |
pressure | string | 氣壓 |
windspeed | string | 風速 |
windpower | string | 風級 |
sunrise | string | 日出時間 |
sunset | string | 日落時間 |
aqi | string | AQI指數 |
primarypollutant | string | 首要污染物 |
<?php require_once 'curl.func.php'; $appkey = 'your_appkey_here';//你的appkey $city = '安順';//utf8 $cityid='111';//任選 $url = "https://api.jisuapi.com/weather2/query?appkey=$appkey&city=$city"; $result = curlOpen($url, ['ssl'=>true]); $jsonarr = json_decode($result, true); //exit(var_dump($jsonarr)); if($jsonarr['status'] != 0) { echo $jsonarr['msg']; exit(); } $result = $jsonarr['result']; echo $result['cityid'].' '.$result['date'].' '.$result['weather'].' '.$result['temphigh'].' '.$result['templow'].' '.$result['img'].' '.$result['humidity'].' '.$result['pressure'].' '.$result['windspeed'].' '.$result['winddirect'].' '.$result['windpower'].' '.$result['sunrise'].' '.$result['sunset'].' '.$result['aqi'].' '.$result['primarypollutant'].' '.$result['cityname'];
{ "status": 0, "msg": "ok", "result": { "cityid": "111", "date": "2018-01-01", "weather": "陰", "temphigh": "8", "templow": "4", "img": "2", "humidity": "98", "pressure": "856", "windspeed": "1.8", "winddirect": "東風", "windpower": "2級", "sunrise": "07:44", "sunset": "18:15", "aqi": "29", "primarypollutant": "PM10", "cityname": "安順" } }
代號 | 說明 |
---|---|
201 | 城市和城市ID都為空 |
202 | 城市不存在 |
203 | 查詢日期為空 |
204 | 日期格式不正確 |
210 | 沒有信息 |
代號 | 說明 |
---|---|
101 | APPKEY為空或不存在 |
102 | APPKEY已過期 |
103 | APPKEY無請求此數據權限 |
104 | 請求超過次數限制 |
105 | IP被禁止 |
106 | IP請求超過限制 |
107 | 接口維護中 |
108 | 接口已停用 |
計次套餐 | 套餐規格 | 價格 | ||
---|---|---|---|---|
免費套餐 | 1000次 | 0.00元 | ≈0元/次 | |
Level3 | 50000次 | 21.00元 | ≈0.00042元/次 | |
Level4 | 100000次 | 40.00元 | ≈0.0004元/次 | |
* 包月套餐和計次套餐不可同時購買,不可疊加使用。 |
包月套餐 | 套餐規格 | 價格 | ||
---|---|---|---|---|
Level2 特惠 | 3000次/天 | 27.00元 | ≈0.00030元/次 | |
Level3 | 6000次/天 | 52.00元 | ≈0.00029元/次 | |
Level4 | 10000次/天 | 84.00元 | ≈0.00028元/次 | |
* 套餐使用時限為訂購之日起30日。 |