我使用ZipArchive创建zip文件。这一切都很好,除了一件事 - 下载为附件。当我尝试打开下载的文件时,7-zip说:"无法打开文件....作为存档"。保存在服务器上的文件可以解决所有问题。当我尝试将下载的文件与存储在服务器上的文件进行比较时,文件末尾的差异很小。
简单地说:服务器上的存档打开但下载后它不会
我使用的代码:
$file='Playlist.zip';
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-Length: ".filesize($file));
header("Content-Disposition: attachment; filename=".basename($file)."");
header("Pragma: no-cache");
header("Expires: 0");
set_time_limit(0);
$handle = fopen($file, "rb");
while (!feof($handle)){
echo fread($handle, 8192);
}
fclose($handle);
}
}
答案 0 :(得分:0)
尝试使用fpassthru()
:
$file="Playlist.zip";
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-Length: " . filesize($file));
header("Content-Disposition: attachment; filename=" . basename($file));
header("Pragma: no-cache");
$handle = fopen($file, "rb");
fpassthru($handle);
fclose($handle);
}
}