我试图用php下载一些文件来隐藏文件路径但是一些文件类型总是被破坏。 像pdf和mp3这样的文件类型很棒。 像doc,ppt,jpg这样的文件类型总是下载破坏。
我使用这些mimetypes
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);
}
答案 0 :(得分:1)
我的猜测是你在PHP代码中输出空白字符。可能是换行。这是通过PHP提供二进制文件时文件损坏的一个非常常见的原因,并且很难发现。这也是非常典型的情况,其中某些文件类型已损坏而其他文件类型未损坏,因为某些文件类型可以处理额外的空白区域。
只需在源代码中使用<?php
和?>
标记之外的换行符,就可以非常轻松地将空白空间扩展到PHP程序中。
检查您的PHP程序 - 以及所有包含 - 以确保在程序结束时关闭?>
后没有任何尾随空白行。另请检查<?php
标记前面的文件顶部,但程序末尾的空行更为常见。
事实上,最好完全删除?>
结束标记 - 无论如何它都是可选的,删除它意味着你的PHP文件末尾肯定不会有任何空格问题。
希望有所帮助。