From 523ee917974c24611185463e0df987be52a05ab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 6 Apr 2021 15:28:44 +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 a9623bf..c045a7e 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -403,7 +403,6 @@ class HttpClient if (!empty($this->port) && $this->checkIsIp($this->host)) { $this->host .= ':' . $this->port; } - var_dump('https://' . $this->host . '/' . $url); if ($this->isSSL) { return $this->curl('https://' . $this->host . '/' . $url, $data); } else { @@ -629,6 +628,7 @@ class HttpClient private function curl($url, $data = []) { try { + var_dump($url); $output = $this->curlParse($url, $data); if ($output === FALSE) { return new Result(['code' => 500, 'message' => $output]);