尝试运行函数socket_recvfrom但它返回错误:socket_recvfrom():无法recvfrom [0]:操作成功完成

发布于 2024-08-22 23:02:25 字数 255 浏览 4 评论 0原文

我正在运行一个函数: @socket_recvfrom($this->socket, $buf, 8192, 0, $from, $port);

但这会返回一个错误:

socket_recvfrom(): 无法recvfrom [0]: 操作成功完成。

有人对此有想法吗?这意味着什么?

操作系统:Windows

PHP:5.3

莫滕

I am running a function: @socket_recvfrom($this->socket, $buf, 8192, 0, $from, $port);

but this returns an error saying:

socket_recvfrom(): unable to recvfrom [0]: The operation completed successfully.

Anyone who has an idea about this? What does this mean?

OS: Windows

PHP: 5.3

Morten

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉南桥 2024-08-29 23:02:25

这可能意味着套接字是非阻塞的,并且调用该函数时没有可用的缓冲数据,或者套接字收到了带外消息。或者首先没有正确创建套接字。

“无法接收”之后的 [0] 让我认为这可能是套接字的资源 ID - 如果成功创建了套接字,则该资源 ID 不会为 0。

C.

It might mean that the socket is non-blocking and there was no buffered data available when the function was called, or that the socket received an out-of-band message. Or that the socket has not been created correctly in the first place.

The [0] after the "unable to recvfrom" makes me think that this might be the resource id for the socket - which would not be 0 if te socket had been created succesfully.

C.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文