在 PHP 中 - 有没有办法知道 fsockopen 何时超时?

发布于 2024-08-21 15:22:24 字数 102 浏览 5 评论 0原文

我想知道是否有人知道如何知道 fsockopen 何时超时? 例如,如果我将超时设置为 5 秒,我可以定义一个处理程序来在连接到我的服务器达到该超时时执行某些操作吗?

谢谢

I was wondering if anyone knows a way to know when fsockopen times out?
For instance if I set the timeout to 5 seconds, can I define a handler to do something if it hits that timeout connecting to my server?

thanks

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

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

发布评论

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

评论(1

走过海棠暮 2024-08-28 15:22:24

手册页

如果errno返回值为0且函数返回
FALSE,这表明
在 connect() 之前发生错误
称呼。这很可能是由于
初始化套接字时出现问题。

From the man page:

If the value returned in errno is 0 and the function returned
FALSE, it is an indication that the
error occurred before the connect()
call. This is most likely due to a
problem initializing the socket.

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