Php multi curl - 在 multicurl 运行时获取内容
我正在设计一个带有多卷曲的简单抓取解析器。我见过很多例子,但有一个小问题。解析器正在等待最慢的响应,然后开始解析。
当多重卷曲仍在运行时,是否有一些很酷的方法可以开始解析?因为如果最慢的请求是 10 秒,那么整个脚本将等待 10 秒,然后开始解析源。
谢谢 尼克
I am designing a simple scraping parser with multi curl. I have see many example, but there is a little problem. The parser is waiting of the slowest response and after that is beginning with the parsing.
Is there some cool method to begin with the parsing while the multi curl is still running? Because if the slowest request is 10 seconds, then the whole script is waiting 10 seconds and afterthat is beginning with the parsing of the sources.
Thanks
Nik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅http://www.jaisenmathai.com/articles/php-curl-asynchronous。 html
TL;DR:curl_multi_exec 可让您检查是否有任何请求已准备好。
See http://www.jaisenmathai.com/articles/php-curl-asynchronous.html
TL;DR: curl_multi_exec lets you check whether any request is ready.