我正在编写一个 PHP 程序,它从后端下载 pdf 并保存到本地驱动器。现在如何在下载之前检查文件是否存在?
目前我正在使用 curl(见下面的代码)来检查和下载,但它仍然下载大小为 1KB 的文件。
$url = "http://wedsite/test.pdf";
$path = "C:\\test.pdf;"
downloadAndSave($url,$path);
function downloadAndSave($urlS,$pathS)
{
$fp = fopen($pathS, 'w');
$ch = curl_init($urlS);
curl_setopt($ch, CURLOPT_FILE, $fp);
$data = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo $httpCode;
//If 404 is returned, then file is not found.
if(strcmp($httpCode,"404") == 1)
{
echo $httpCode;
echo $urlS;
}
fclose($fp);
}
我想在下载之前检查文件是否存在。知道怎么做吗?