使用stream_socket_client同时检索2个远程文件
我有一个 PHP 脚本,它检索两个非常相似的文件并对数据执行一些任务,然后输出结果。我目前正在使用curl并获取一个并处理它,然后获取另一个并处理它。
我想切换到stream_socket_client,因为我听说您可以同时检索这两个文件,并在检索到它们后进行处理,但我不确定如何执行此操作。
I have a script in PHP which retrieves two very similar files and performs some tasks on the data then outputs a result. I'm currently using curl and getting one, processing it, then getting the other and processing it.
I want to switch to stream_socket_client as I've heard you can retrieve both files at the same time and do the processing once they have been retrieved but I am unsure how to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此博文。基本上,您打开两个套接字,使用 false 调用stream_set_blocking,然后在循环中调用 fread 直到两个流都达到 EOF。
See this blog post. Basically, you open both sockets, call stream_set_blocking with false, and in a loop you call fread until both streams reach EOF.