使用cURL从页面下载并保存图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用cURL从页面下载并保存图像相关的知识,希望对你有一定的参考价值。
Here is a set of functions that can be very useful: Give this script the url of a webpage, and it will save all images from this page on your server.
$regex = '~http://somedomain.com/images/(.*?).jpg~i'; foreach ($matches[1] as $img) { saveImg($img); } } function saveImg($name) { $url = 'http://somedomain.com/images/'.$name.'.jpg'; $data = get_data($url); } $i = 1; $l = 101; while ($i < $l) { $html = get_data('http://somedomain.com/id/'.$i.'/'); getImages($html); $i += 1; }
以上是关于使用cURL从页面下载并保存图像的主要内容,如果未能解决你的问题,请参考以下文章