Revert "改名"

This reverts commit fdf58326
This commit is contained in:
2022-01-11 15:35:14 +08:00
parent 56f42ac97b
commit cefe7ae010
+1 -2
View File
@@ -108,7 +108,7 @@ class AsyncClient extends ClientAbstracts
{ {
$array = $this->_parseHeaders($path); $array = $this->_parseHeaders($path);
if ($this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content)) { $this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content);
$receive = ''; $receive = '';
while (true) { while (true) {
$tmp = $this->client->recv(); $tmp = $this->client->recv();
@@ -128,7 +128,6 @@ class AsyncClient extends ClientAbstracts
$this->parseResponseHeaders($header); $this->parseResponseHeaders($header);
$this->setBody($body); $this->setBody($body);
} }
}
/** /**