如何更改PHP中的默认下载位置

时间:2012-08-11 20:40:06

标签: php file download gmail inbox

我的代码:

$zip_name="download.zip";
$ctype="application/zip";

// required for IE, otherwise Content-disposition is ignored
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');

header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: $ctype");

// change, added quotes to allow spaces in filenames

header("Content-Disposition: attachment; filename=\"".basename($zip_name)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($zip_name));
readfile("$zip_name");

现在文件下载到下载文件夹。

我需要下载D:drive中的所有文件。

1 个答案:

答案 0 :(得分:9)

这是不可能的。网络服务器无法告诉客户端保存文件的位置。想象一下,如果站点可以指定文件保存操作的确切位置,则会产生安全隐患。

请参阅RFC 2183, section 2.3

  

接收MUA不应该尊重任何目录路径信息
  这似乎存在于文件名参数
中。文件名
  应仅视为终端组件。便携式
  目录路径的规范可能在将来完成   通过单独的Content-Disposition参数,但没有条款   在这个草案中为它做了。