PHP socket_read 等待数据读取
PHP socket_read waits for data to read
我是套接字的新手,这是我的一段代码:
while (true) {
$status = $this->client->read();
echo $status;
$this->eventQueue->hasEventToSend() ? $this->client->send($this->eventQueue->getEvent()) : null;
}
客户端读取方法就是:
try {
$status = socket_read($this->socket, $length);
} catch (Throwable $exception) {
$this->reConnect();
Log::error($exception->getMessage());
$status = false;
}
return (string) $status;
$status = $this->client->read()
之后不会执行任何操作,直到 socket_read()
读取新数据。我想停止 socket_read()
的行为,就像等待数据读取或仅在有任何数据要读取时调用 socket_read()
一样。我不知道如何实现,所以我在这里问 ;)
默认情况下读取操作总是阻塞的。您可以使用
socket_set_nonblock($socket)
在调用 read() 之前防止 socket 在读取操作中阻塞,或者您可以使用
socket_select()
读取数据前检查数据是否可用。
我是套接字的新手,这是我的一段代码:
while (true) {
$status = $this->client->read();
echo $status;
$this->eventQueue->hasEventToSend() ? $this->client->send($this->eventQueue->getEvent()) : null;
}
客户端读取方法就是:
try {
$status = socket_read($this->socket, $length);
} catch (Throwable $exception) {
$this->reConnect();
Log::error($exception->getMessage());
$status = false;
}
return (string) $status;
$status = $this->client->read()
之后不会执行任何操作,直到 socket_read()
读取新数据。我想停止 socket_read()
的行为,就像等待数据读取或仅在有任何数据要读取时调用 socket_read()
一样。我不知道如何实现,所以我在这里问 ;)
默认情况下读取操作总是阻塞的。您可以使用
socket_set_nonblock($socket)
在调用 read() 之前防止 socket 在读取操作中阻塞,或者您可以使用
socket_select()
读取数据前检查数据是否可用。