我有一个CSV文件,其中包含我要下载图像的URL列表.所以问题是如何逐行读取CSV文件并在每个URL上运行我的代码.
我有links.csv文件
url1.com
url2.com
url3.com
这是我要运行的代码
$results_page = curl($url);
$img_url = scrape_between($results_page, "\"mainUrl\":\"", "\",\"dimensions\"");
$title = scrape_between($results_page, "", "");
$find = array('/ /', '/:/');
$replace = array('_', '');
$img_name = preg_replace($find, $replace, $title);
$data = curl($img_url);
file_put_contents('images/'.$img_name.'.jpg', $data);
谢谢!