<?php
set_time_limit(0);
$url = 'http://www.some.url/file.pdf';
$path = 'files/file.pdf';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
file_put_contents($path, $data);
?>
这是我用来从给定 url 下载特定 pdf 文件的代码。如果该 url 中有很多文件,名称为 file1.pdf、file2.pdf 等。如何在运行循环时检查,何时结束循环,因为文件的数量有限?
请帮忙!