我的下载脚本有一个非常奇怪的问题
它基本上
1.使用“GET”方法获取文件ID
2.从数据库中获取该文件的名称和位置
3.将其与标头和读取文件一起发送给客户端
但奇怪的是,该文件总是以损坏或损坏的形式出现
就像它是 zip 或 rar 文件文件大小是否正确并且可以正常打开
但我无法打开其中的压缩文件,这就是我收到文件损坏错误的时候
这很奇怪,因为如果代码有问题我什至不能打开 zip 文件(或者至少我认为我不应该)
另一件事是我在发送标头之前打印出带有路径的文件,以确保一切正常
我已将文件地址放在 url 上并下载文件,文件正常,没有错误
所以在发送标头之前一切都很好
这是我的代码
$file_id = isset($_GET['id']) && (int)$_GET['id'] != 0 ? (int)$_GET['id'] : exit;
//////// finging file info
$file = comon::get_all_by_condition('files' , 'id' , $file_id );
if(!$file) exit;
foreach($file as $file){
$location = $file['location'];
$filename = $file['file_name'];
}
/////////////
$site = comon::get_site_domian();
$ext = trim(end(explode('.' , $filename )));
$abslout_path = 'http://'.$site.'/'.$location.'/'.$filename;
$relative = $location.'/'.$filename;
////////////////// content type
switch($ext) {
case 'txt':
$cType = 'text/plain';
break;
case 'pdf':
$cType = 'application/pdf';
break;
case 'zip':
$cType = 'application/zip';
break;
case 'doc':
$cType = 'application/msword';
break;
case 'xls':
$cType = 'application/vnd.ms-excel';
break;
case 'ppt':
$cType = 'application/vnd.ms-powerpoint';
break;
case 'gif':
$cType = 'image/gif';
break;
case 'png':
$cType = 'image/png';
break;
case 'jpeg':
case 'jpg':
$cType = 'image/jpg';
break;
default:
$cType = 'application/force-download';
break;
}
//////////////// just checking
if(!file_exists($relative)){
echo $relative;
echo '<br />';
exit;
}
if( !is_readable( $relative ) )
exit('its not redable');
if( headers_sent() )
exit('headers ? already sent !! ');
header( 'Pragma: public' );
header( 'Expires: 0' );
header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' );
header( 'Cache-Control: private', false ); // required for certain browsers
header( 'Content-Description:File Transfer' );
header($_SERVER['SERVER_PROTOCOL'].' 200 OK');
header( 'Content-Type:'.$cType);
header( 'Content-Disposition: attachment; filename="'. basename($filename) . '";' );
header( 'Content-Transfer-Encoding: binary' );
header( 'Content-Length: ' . filesize($relative) );
readfile($abslout_path);
exit;
我已经检查了几次标题,它们很好(我认为),我还添加了人类已知的每个标题以确保!
我开始认为这可能是字符编码或文件夹权限之类的脚本以外的东西!或类似的东西 !!
我错过了什么吗?