在这里阅读了几篇文章后,我制定了这个函数,这是一堆其他的混搭:
function outputFile( $filePath, $fileName, $mimeType = '' ) {
// Setup
$mimeTypes = array(
'pdf' => 'application/pdf',
'txt' => 'text/plain',
'html' => 'text/html',
'exe' => 'application/octet-stream',
'zip' => 'application/zip',
'doc' => 'application/msword',
'xls' => 'application/vnd.ms-excel',
'ppt' => 'application/vnd.ms-powerpoint',
'gif' => 'image/gif',
'png' => 'image/png',
'jpeg' => 'image/jpg',
'jpg' => 'image/jpg',
'php' => 'text/plain'
);
// Send Headers
//-- next line fixed as per suggestion --
header('Content-Type: ' . $mimeTypes[$mimeType]);
header('Content-Disposition: attachment; filename="' . $fileName . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
header('Cache-Control: private');
header('Pragma: private');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
readfile($filePath);
}
我有一个php页面(file.php),它做了这样的事情(许多其他代码被删除):
// I run this thru a safe function not shown here
$safe_filename = $_GET['filename'];
outputFile ( "/the/file/path/{$safe_filename}",
$safe_filename,
substr($safe_filename, -3) );
似乎应该有效,而且几乎可以,但我遇到了以下问题:
当它是一个文本文件时,我得到一个奇怪的符号作为文本文件中的第一个字母
当它是一个单词doc时,它已经损坏了(大概是同一个第一位或字节丢弃了)。
我认为所有其他文件类型都会损坏 - 甚至没有尝试过它们
关于我做错的任何想法?
谢谢 -
更新:按照建议改变了代码行 - 仍然是同样的问题。
答案 0 :(得分:4)
好的,我明白了。
上面的脚本可以工作。
发生的事情是我有一系列的include_once文件,其中一个有一个空行导致了这个问题。
答案 1 :(得分:2)
不确定这是否是真正的答案,但我认为你打算
header('Content-Type: ' . $mimeType);
是
header('Content-Type: ' . $mimeTypes[$mimeType]);