From 4d24fd7dde7d4703b62f9ba3bb509220371bf0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 24 Sep 2020 11:40:48 +0800 Subject: [PATCH] add clear --- wchat/common/HttpClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index c0e6aef..1413244 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -380,11 +380,11 @@ class HttpClient if ($this->isHttp($url) || $this->isHttps($url)) { return $this->curl($url, $data); } + var_dump($this->host,$url); $url = $this->matchHost(ltrim($url, '/')); if (!empty($this->port)) { $this->host .= ':' . $this->port; } - var_dump($this->host); if ($this->isSSL) { return $this->curl('https://' . $this->host . '/' . $url, $data); } else {