From 1d07c78f1a3c3dc0ed8cb034551de8d795b926df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 11 Jan 2021 15:19:20 +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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/HttpServer/Client/Client.php b/HttpServer/Client/Client.php index c91fb7e7..c1f4cc88 100644 --- a/HttpServer/Client/Client.php +++ b/HttpServer/Client/Client.php @@ -82,10 +82,8 @@ 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); } - if (strpos($path, '/') !== 0) { $path = '/' . $path; }