php下载jpg文件为空解决方法
来源:程序员人生 发布时间:2014-01-10 01:19:50 阅读次数:3280次
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);
-
-
- exit;
此处附ob_clean()的解释:clean (erase) the output buffer
我理解ob_clean()等于.net中的response.clear();
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠