我有一个要解决的问题。问题是使用CURL下载文件并在发生这种情况时向浏览器中的用户提供另存为提示。我可以成功打开文件,但它会以字符数据的形式直接在浏览器中打开。
到目前为止,我尝试使用标准的Content-Type和Content-Disposition标头,但没有运气会真正产生保存对话框提示:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "ftp://server.com/recordings/4_23_2019/CD36FAFA9DFD4DE190B487C503D5A3D2 @ 2_04_28 PM.wav");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FILE, $file); #output
curl_setopt($ch, CURLOPT_USERPWD, 'username:password');
$file = curl_exec($ch);
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="CD36FAFA9DFD4DE190B487C503D5A3D2 @ 2_04_28 PM.wav"');
header('Content-Transfer-Encoding: binary');
header('Content-length: ' . filesize($file));
readfile($file);
exit;
}
?>
我相信使用这些标头应该为用户提供保存提示,但是我却得到了一个包含一堆随机字符的页面。
产生的错误:
警告:file_exists()期望参数1为资源,字符串 在/ path / name
中给出警告:无法修改标头信息-标头已发送
答案 0 :(得分:-1)
这是一个项目(不在产品中)的有效代码。
if (file_exists($path)) {
if (is_readable($path)) {
@set_time_limit(900);
$NomFichier = basename($path);
header("Content-Type: application/force-download; name=\"$NomFichier\"");
header("Content-Transfer-Encoding: binary");
header("Content-Disposition: attachment; filename=\"$NomFichier\"");
header("Expires: 0");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
readfile($path);
exit;
} else {
$this->say_error("Access denied for this file.");
}
} else {
$this->say_error("File moved or deleted.");
}