From 18d898a438902072793a86536d3640f584acddef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 6 Apr 2021 16:01:32 +0800 Subject: [PATCH] add clear --- wchat/common/HttpClient.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index ec4546c..9eb1c9f 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -632,7 +632,6 @@ class HttpClient if ($output === FALSE) { return new Result(['code' => 500, 'message' => $output]); } - var_dump($output); [$header, $body, $status] = $this->explode($output); if (!in_array($status, [200, 201])) { $data = new Result(['code' => $status, 'message' => $body, 'header' => $header]);