Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在php中,当我想为套接字设置超时时,我应该setSendTimeout()在调用之前open()还是调用之后调用方法open()?
setSendTimeout()
open()
您将在打开套接字之后和发送之前设置超时。如果您在无论如何都会阻止发送之后设置它。
我假设您正在使用socket_set_optionwhich 将打开的套接字作为其第一个参数,所以它肯定需要在之后。
socket_set_option
是什么setSendTimeout?我以前从未见过。
setSendTimeout