我知道通过单个curl请求我们可以保存图像,但是如果我们有包含数百个URL的URL的php数组,则可以使用多个请求同时保存图像。因为多卷曲会大大减少时间。
$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
这是单个卷曲请求的代码。我如何修改多卷曲的数据,如
$url={'http://http://example.com/image1.gif',
'http://http://example.com/image2.gif',
'http://http://example.com/image3.gif',
'http://http://example.com/image4.gif',
'http://http://example.com/image5.gif',
'http://http://example.com/image6.gif',
'http://http://example.com/image7.gif'};