From 002e9ba8a1b870865be895c0c2d09eb0dc4adde4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Tue, 14 Feb 2023 14:21:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E4=BF=AE=E6=94=B98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/Statistics.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/api/controller/Statistics.php b/app/api/controller/Statistics.php index 72026c0..0a6c6c7 100644 --- a/app/api/controller/Statistics.php +++ b/app/api/controller/Statistics.php @@ -1232,7 +1232,7 @@ class Statistics extends BaseController } //获取天气 - public function get_weather(){ + public function get_weather($street_id=0){ // 获取天气 // 101271007 纳溪 510503 // 101271002 江阳区 510502 @@ -1243,6 +1243,9 @@ class Statistics extends BaseController // 101271005 叙永 510524 // 判断区域 $name = '101271002'; + if ($street_id){ + $name = $street_id; + } $url = "https://devapi.qweather.com/v7/weather/now?key=b3e94fa75aae4551b6a5db150b409261&location=".$name; $url1 = "https://devapi.qweather.com/v7/indices/1d?key=b3e94fa75aae4551b6a5db150b409261&type=0&location=".$name;