1 分钟阅读

PHP根据url批量下载图片

123456789101112 $url) { $content = file_get_contents($url); file_put_contents($key.'.jpg', $content);}

1
2
3
4
5
6
7
8
9
10
11
12
<?php
$imgArr = array(
'https://cdn.jsdelivr.net/gh/honjun/ImageHosting/sina/006bYVyvgy1fhoaywi4qaj307g037q2r.jpg',
'https://cdn.jsdelivr.net/gh/honjun/ImageHosting/sina/006bYVyvgy1fhoaytokqnj308o02g3yd.jpg',
'https://cdn.jsdelivr.net/gh/honjun/ImageHosting/sina/006bYVyvgy1fhf69hzfxej30ip09lmxs.jpg',
'https://cdn.jsdelivr.net/gh/honjun/ImageHosting/sina/006bYVyvgy1fhf7a6r8ykj30jy0lcac0.jpg',
);
$count = count($imgArr);
foreach ($imgArr as $key => $url) {
$content = file_get_contents($url);
file_put_contents($key.'.jpg', $content);
}