From c404cd6b46a3c3bbec1bbd6aa0e33858d852afe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 11 Jan 2021 15:15:52 +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/Client.php | 1 + 1 file changed, 1 insertion(+) diff --git a/HttpServer/Client/Client.php b/HttpServer/Client/Client.php index e264540d..c91fb7e7 100644 --- a/HttpServer/Client/Client.php +++ b/HttpServer/Client/Client.php @@ -82,6 +82,7 @@ class Client extends ClientAbstracts if ($isHttps || $this->isSSL()) { $client = new SClient($host, 443, true); } else { + var_dump($host, $this->getPort()); $client = new SClient($host, $this->getPort(), false); }