From d413937451579bef4a74035a71c9b9e1a6a0c6ab Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 10 Jul 2017 14:52:16 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9kuaidi100?= =?UTF-8?q?=E7=89=A9=E6=B5=81=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/index/controller/Index.php | 2 +- extend/service/ToolsService.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/application/index/controller/Index.php b/application/index/controller/Index.php index 77bb04dc2..0ae9d6f7b 100644 --- a/application/index/controller/Index.php +++ b/application/index/controller/Index.php @@ -50,7 +50,7 @@ class Index extends Controller public function wuliu() { - $order = '1202247993797'; + $order = '444500528707'; dump(ToolsService::express($order)); } diff --git a/extend/service/ToolsService.php b/extend/service/ToolsService.php index c378cf828..1bf9546bd 100644 --- a/extend/service/ToolsService.php +++ b/extend/service/ToolsService.php @@ -164,12 +164,12 @@ class ToolsService public static function express($code) { $result = []; - $autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}"); + $client_ip = Request::instance()->ip(); + $header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip]; + $autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}", [], 30, $header); foreach (json_decode($autoResult)->auto as $vo) { $microtime = microtime(true); $url = "http://www.kuaidi100.com/query?type={$vo->comCode}&postid={$code}&id=1&valicode=&temp={$microtime}"; - $client_ip = Request::instance()->ip(); - $header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip]; $result[$vo->comCode] = json_decode(HttpService::get($url, [], 30, $header), true); } return $result;