php下载jpg文件为空解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-29 14:16:34 浏览: 评论:0
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();
Tags: php下载 jpg文件 为空
- 上一篇:php中文目录 include错误解决
- 下一篇:在php中中文乱码解决方法
相关文章
- ·php下载远程文件的源码介绍(2020-02-04)
- ·php使浏览器直接下载pdf文件的方法(2020-07-02)
- ·php下载excel无法打开的解决方法(2020-08-11)
- ·兼容ie6浏览器的php下载文件代码分享(2021-03-20)
- ·php获取CSS文件中图片地址并下载到本地的方法(2021-05-02)
- ·php trim() 表单验证不为空实例(2014-05-23)
- ·php判断值是否为空实例代码(2014-07-24)
- ·linux中fgetcsv取得的数组元素为空字符串的解决方法(2014-09-18)
- ·PHP中判断变量为空的几种方法小结(2020-06-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)