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 通过 HTTP 发送的块。
值得注意的是,HTTP 流可能永远不会结束。当我使用 CURL获取块时,有什么方法可以解析它们?
还是我必须求助于一些自制的fsockopen()解决方案?
fsockopen()
看看选项CURLOPT_WRITEFUNCTION。您可以定义一个回调,当响应中有新数据时将调用该回调。请参阅手册。
CURLOPT_WRITEFUNCTION