diff --git a/src/AsyncClient.php b/src/AsyncClient.php index e17ff4b..f39acb9 100644 --- a/src/AsyncClient.php +++ b/src/AsyncClient.php @@ -114,7 +114,7 @@ class AsyncClient extends ClientAbstracts } } $this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content); - $revice = $this->client->recv(); + $revice = gzdecode($this->client->recv()); var_dump(implode("\r\n", $array) . "\r\n\r\n" . $revice); [$header, $body] = explode("\r\n\r\n", $revice);