我有以下 zip 下载功能:
$file='myStuff.zip';
function downloadZip($file){
$file=$_SERVER["DOCUMENT_ROOT"].'/uploads/'.$file;
if (headers_sent()) {
echo 'HTTP header already sent';
}
else {
if (!is_file($file)) {
header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found');
echo 'File not found';
} else if (!is_readable($file)) {
header($_SERVER['SERVER_PROTOCOL'].' 403 Forbidden');
echo 'File not readable';
} else {
header($_SERVER['SERVER_PROTOCOL'].' 200 OK');
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: Binary");
header("Content-Length: ".filesize($file));
header("Content-Disposition: attachment; filename=\"".basename($file)."\"");
readfile($file);
exit;
}
}
}
问题是当我调用这个函数时,我最终不仅下载了 myStuff.zip,还下载了包含所有文件夹的完整目录路径。我在使用 XAMPP 的 Mac 上,所以这意味着我得到以下信息:
/applications/xampp/htdocs/uploads/myStuff.zip
这意味着我得到一个名为应用程序的文件夹,其中包含所有子文件夹,然后在所有子文件夹中我得到 myStuff.zip。
我怎样才能在myStuff.zip
没有目录的情况下下载?