diff --git a/common/HttpClient.php b/common/HttpClient.php index e7f912d..7c8ffad 100644 --- a/common/HttpClient.php +++ b/common/HttpClient.php @@ -434,6 +434,9 @@ class HttpClient $header = explode(PHP_EOL, $header); $status = (int)explode(' ', trim($header[0]))[1]; $header = $this->headerFormat($header); + + var_dump($header, $body);exit; + if ($status != 200) { return new Result(['code' => 500, 'message' => $body, 'header' => $header]); }