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 脚本中打开一个套接字连接,而不是在编码中关闭它。脚本执行完成后,socket连接会保持打开吗?
如果我们在新选项卡中打开相同的脚本或刷新页面,我们可以重用该连接吗?
如果它是用 打开的fsockopen(),它将在脚本完成时关闭。如果您希望套接字在脚本执行之间保持不变,请查看pfsockopen()专门为此用例提供的。
fsockopen()
pfsockopen()