文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>php文件下载中jpg文件为空文件的问题

php文件下载中jpg文件为空文件的问题

时间:2011-03-31  来源:窃马贼

前一段时间粗略的学习了一点php的东西,这次公司的bugfree附件下载打开时遇到些问题,问题症状如下:

jpg格式的文件,点击在浏览器中打开显示为红叉

代码如下:

$FileType = "image/pjpeg";
header("Content-type: {$FileType}");
    

header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");

$file_content = file_get_contents($FilePath);
echo $file_content;

exit;  

首先排查初始文件是否有问题

1、echo $FilePath;

2、根据输出的文件完整路径,打开文件,没有问题

排除原始文件的嫌疑 

然后排查在文件读取过程中是否存在问题

1、$FileType = "application/jpeg";

 header("Content-Disposition: attachment; filename=\"{$HeaderName}\";"); 

将文件强制下载

下载下来发现文件大小与原始文件一致,但是打开后还是为空,可以确定在文件输出的时候出现了问题 

 使用file_put_contents("d:\aaa.jpg",file_get_contents($FilePath)),将文件保存到服务器,保存的文件可以打开

这时我怀疑在文件输出到客户端的时候编码出了问题 

经过一段时间的折腾,终于把问题解决,代码如下:

header("Content-type: {$FileType}");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");
//此处增加编码设定
header('Content-Transfer-Encoding: binary');
//此处最重要,目的是要清空输出的字节
ob_clean();
//此处等于下面被注射的两行,可节省代码
readfile($FilePath);

//$file_content = file_get_contents($FilePath);
//echo $file_content;   

exit;  

此处附ob_clean()的解释:

Clean (erase) the output buffer 

我理解ob_clean()等于.net中的Response.Clear();

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载