用php下载jpg、doc、ppt文件已损坏
我试图用php下载一些文件来隐藏文件路径,但有些文件类型总是被破坏。 像pdf和mp3这样的文件类型效果很好。 像DOC、PPT、JPG这样的文件类型总是下载损坏。
我使用这些Mimetype
if (file_exists($file_real)){
$extension = strtolower(substr(strrchr($file, "."), 1));
switch($extension){
case "ppt": $type = "application/vnd.ms-powerpoint"; break;
case "pdf": $type = "application/pdf"; break; //------ok
case "doc": $type = "application/msword"; break;
case "mp3": $type = "audio/mpeg"; break;//------ok
case "jpg": $type = "image/jpg"; break;
default: $type = "application/force-download"; break;
}
和这些标题
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public", false);
header("Content-Description: File Transfer");
header("Content-Type: " . $type);
header("Accept-Ranges: bytes");
header("Content-Disposition: attachment; filename="" . $header_file . "";");
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize($file_real));
if ($stream = fopen($file_real, 'rb')){
while(!feof($stream) && connection_status() == 0){
set_time_limit(0);
print(fread($stream,1024*8));
flush();
}
fclose($stream);
}
php>
我的猜测是您在推荐答案代码中输出空白字符。可能是换行符。当通过PHP提供二进制文件时,这是文件损坏的一个非常常见的原因,并且很难发现。这也是一些文件类型损坏而其他文件类型没有损坏的典型情况,因为某些文件类型可以处理额外的空白。
只需在源代码中将换行符放在<?php
和?>
标记之外,就可以非常容易地在PHP程序中使用空格。
?>
之后没有任何尾随空行。还要检查<?php
标记之前的文件顶部,但程序末尾的空行要常见得多。
事实上,最好完全删除?>
结束标记--无论如何它都是可选的,删除它意味着您肯定不会在PHP文件的末尾出现任何空白问题。
希望这会有帮助。
相关文章