2

我有一个下载 zip 文件的代码:

$dl_path = './';  
$filename = 'favi.zip';  
$file = $dl_path.$filename; 
if (file_exists($file))  {
  header('Content-Description: File Transfer');
  header('Content-Type: application/zips');     
  header("Pragma: public");     
  header("Expires: 0");     
  header("Cache-Control:must-revalidate, post-check=0, pre-check=0"); 
  header("Content-Type:application/force-download");    
  header("Content-Type:application/download");  
  header("Content-Disposition:attachment;filename=$filename ");     
  header("Content-Transfer-Encoding:binary ");
  header('Content-Length: ' . filesize($file));
  ob_clean();
  flush();
  readfile($file);
  exit;
}

有根目录/public_html,脚本在根目录中执行。

目录中有 zip 文件/

我正在尝试使用$dl_pathas/但它不起作用。

请帮忙。

4

2 回答 2

10
$dl_path = __DIR__.'/..'; // parent folder of this script
$filename = 'favi.zip';
$file = $dl_path . DIRECTORY_SEPARATOR . $filename;

// Does the file exist?
if(!is_file($file)){
    header("{$_SERVER['SERVER_PROTOCOL']} 404 Not Found");
    header("Status: 404 Not Found");
    echo 'File not found!';
    die;
}

// Is it readable?
if(!is_readable($file)){
    header("{$_SERVER['SERVER_PROTOCOL']} 403 Forbidden");
    header("Status: 403 Forbidden");
    echo 'File not accessible!';
    die;
}

// We are good to go!
header('Content-Description: File Transfer');
header('Content-Type: application/zip');
header("Pragma: public");
header("Expires: 0");
header("Cache-Control:must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/download");
header("Content-Disposition: attachment;filename={$filename}");
header("Content-Transfer-Encoding: binary ");
header('Content-Length: ' . filesize($file));
while(ob_get_level()) ob_end_clean();
flush();
readfile($file);
die;

^试试这个代码。看看它是否有效。如果没有:

  • 如果404是 表示找不到文件。
  • 如果403是,则意味着您无法访问它(权限问题)
于 2013-07-27T10:05:20.867 回答
0

首先通过回显检查您的脚本是否在正确的目录下运行dirname(__FILE__)

如果它正在运行,public_html那么您可以像这样更改代码:

$dl = dirname(__FILE__). '/../';

但要注意安全问题!

  1. 检查您是否对文件目录具有读/写权限
  2. 检查open_basedir限制php.ini(请参阅如何放宽 PHP 的 open_basedir 限制?

希望这可以帮助

于 2013-07-27T10:04:15.243 回答