使用 PHP 的 fsockopen() 中断 TCP 握手?
举个例子:
fsockopen(tcp:\\example.com, 80, $errno, $errstr, 5)
我的朋友刚刚告诉我 PHP 总是会等待 TCP 握手完成之后关闭套接字。然而,我很难相信PHP不能中断握手。
是否可以?如果是这样,怎么办?
Take for example:
fsockopen(tcp:\\example.com, 80, $errno, $errstr, 5)
My friend has just informed me that PHP will always wait for the TCP handshake to be completed before closing the socket. However, I find it difficult to believe that PHP can't interrupt the handshake.
Is it possible? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的。
No, It is not possible.