Revert "改名"

This reverts commit fdf58326
This commit is contained in:
2022-01-11 15:34:27 +08:00
parent 9c7355d7f6
commit 56f42ac97b
+5 -1
View File
@@ -110,7 +110,11 @@ class AsyncClient extends ClientAbstracts
if ($this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content)) {
$receive = '';
while ($tmp = $this->client->recv()) {
while (true) {
$tmp = $this->client->recv();
if (empty($tmp)) {
break;
}
$receive .= $tmp;
}