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.
所以今天我做了这个$fp = fsockopen($host, 80, $errno, $errstr, 50);。流应保持直播 50 秒。我正在使用 xdebug 进行调试以进入每一行代码,目前我只有一行通过了我的 fsockopen 行。
$fp = fsockopen($host, 80, $errno, $errstr, 50);
即使我处于调试模式,套接字是否仍保持打开状态 50 秒,还是等到我完成调试才能倒计时?
超时仅影响fsockopen()等待连接的时间。建立连接后,读取/写入会使用不同的超时值。
fsockopen()
请参阅stream_set_timeout()文档。