标签: php asynchronous curl file-get-contents file-put-contents
是否可以使用php异步下载文件?
找到了this answer,但似乎无法使用此方法下载文件
问题是我需要从API下载文件,但是花了一些时间下载所有图像,并且调用后URL无法使用。
谢谢
答案 0 :(得分:0)
由于@GuillaumeSTLR,我设法使用Guzzle Library
使其起作用。您所要做的就是:
use GuzzleHttp\Client; $client = new Client(); $client->getAsync($url, [ 'sink' => $file ]);