diff --git a/common/HttpClient.php b/common/HttpClient.php index a9350c5..f9b85cc 100644 --- a/common/HttpClient.php +++ b/common/HttpClient.php @@ -448,7 +448,7 @@ class HttpClient */ private function explode($output) { - [$header, $body] = explode("\r\n\r\n", $output, 2); + [$header, $body] = explode("\r\n\r\n", $output, -1); var_dump($header, $output); $header = explode("\r\n", $header);