From e8ff51e8be35dd3045a91b3bc05f39f51624c0cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 6 Apr 2021 15:40:44 +0800 Subject: [PATCH] add clear --- wchat/common/HttpClient.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index e8aa216..3aea124 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -632,6 +632,7 @@ 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]);