From 66de03145aaa3fa2ed218507207e66eb4d2f732b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Fri, 8 Jan 2021 11:56:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpServer/Client/ClientAbstracts.php | 1 + 1 file changed, 1 insertion(+) diff --git a/HttpServer/Client/ClientAbstracts.php b/HttpServer/Client/ClientAbstracts.php index 30722380..ea79ba55 100644 --- a/HttpServer/Client/ClientAbstracts.php +++ b/HttpServer/Client/ClientAbstracts.php @@ -736,6 +736,7 @@ abstract class ClientAbstracts extends Component implements IClient if (strpos($path, '/') !== 0) { $path = '/' . $path; } + var_dump($this->host, $isHttps, $path); return [$this->host, $isHttps, $path]; }