我有以下功能来强制下载文件:
static public function download($file, $options=array()) {
$content = (isset($options['content'])) ? $options['content'] : '';
$contentType = (isset($options['contentType'])) ? $options['contentType'] : '';
header('Cache-Control: public');
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename='.File::filename($file));
header('Content-Type: '.$contentType);
header('Content-Transfer-Encoding: binary');
if ($content!='') {
echo $content;
} else {
readfile($file);
}
}
我发送一个 PDF 文件和 contentType = "application/pdf"。问题是当我尝试打开下载的 PDF 文件时,它显示“打开此文档时出错。文件可能已损坏”。很奇怪,因为我可以打开原始文件,它们看起来完全一样(文件名、大小等)