我想用 Guzzle 下载一个大文件并想跟踪进度。我不知道我是否必须传递一个流或以某种方式使用 RequestMediator。
- 我尝试订阅事件 curl.callback.progress,但 PSR 7 请求没有事件调度程序。
- 我尝试了on_stats,但回调只在最后触发。
- 进度订阅者插件已弃用https://github.com/guzzle/progress-subscriber
我正在测试以下代码。
$dl = 'http://archive.ubuntu.com/ubuntu/dists/wily/main/installer-amd64/current/images/netboot/mini.iso';
$client = new Client([]);
$request = new GuzzleHttp\Psr7\Request('get', $dl);
$promise = $this->client->sendAsync($request, [
'sink' => '/tmp/test.bin'
]);
$promise->then(function (Response $resp) use ( $fs) {
echo 'Finished';
}, function (RequestException $e) {
});
$promise->wait();
提示将不胜感激。