This commit is contained in:
2021-12-24 11:42:58 +08:00
parent c2d5ab5e1b
commit a0f197d98d
+1 -1
View File
@@ -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);