用于提供ZIP的PHP标头。它下载但是已经腐败......为什么?

时间:2017-01-04 13:38:14

标签: php download header zip readfile

早上好,

我正在通过下载的PHP标题提供zip文件,但每次我尝试提取它都表明zip已损坏......我需要第二双眼睛来看看这个......我错过了什么?非常感谢你!

$file_download = 'example';

if (isset($file_download)) {
$file = 'path/to/file/'.$file_download.'.zip';
if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="'.basename($file).'"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    readfile($file);
    exit;
} else {
    echo 'File does not exist!';
}   

}

0 个答案:

没有答案