CURL 与 fsockopen 分块
这可能看起来有点奇怪..但我需要评估/解析使用 PHP 通过 HTTP 发送的块。
值得注意的是,HTTP 流可能永远不会结束。有什么方法可以用 CURL 获取块来解析它们吗?
或者我是否必须求助于一些自制的 fsockopen()
解决方案?
This may seem kind of weird.. but I need to evaluate/parse chunks being sent over HTTP with PHP.
It's of note to say that the HTTP stream may never end. Is there any way I can parse chunks as I get them with CURL?
Or do I have to resort to some home-brewed fsockopen()
solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下
CURLOPT_WRITEFUNCTION
选项。您可以定义一个回调,当响应中有新数据时将调用该回调。请参阅手册。Take a look at the option
CURLOPT_WRITEFUNCTION
. You can define a callback that will be called when there's new data in the response. See the manual.