readfile下载损坏的文件

时间:2015-03-30 08:30:03

标签: php download readfile

当我尝试从localhost下载某个文件时,我遇到了问题。每次我下载一个文件,无论是.docx,.pdf还是.png,它总是腐败的。我花了几个小时才找到解决方案,但似乎没什么用。

这是我正在运行的脚本:

$file_download="loonadministratie/{$loon_id}/{$file}";
        if (file_exists($file_download)) {
                header('Content-Description: File Transfer');
                header("Content-Type: application/octet-stream/loonadministratie/{$loon_id}/");
                header('Content-Disposition: attachment; filename='.basename($file_download));
                header('Expires: 0');
                header('Cache-Control: must-revalidate');
                header('Pragma: public');
                header('Content-Length: ' . filesize($file_download));
                readfile($file_download);
                exit;
            }

感谢正手

1 个答案:

答案 0 :(得分:3)

尝试

<?php
if (ob_get_level()) ob_end_clean();
?>

可能是问题