readfile 下载损坏的文件
readfile downloads corrupt files
我在尝试从我的本地主机下载某个文件时遇到问题。每次我下载文件时,无论是 .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;
}
感谢正手
尝试
<?php
if (ob_get_level()) ob_end_clean();
?>
可能是问题所在
我在尝试从我的本地主机下载某个文件时遇到问题。每次我下载文件时,无论是 .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;
}
感谢正手
尝试
<?php
if (ob_get_level()) ob_end_clean();
?>
可能是问题所在