search
Homephp教程php手册php下载jpg文件为空解决方法

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();


   


本文地址:

转载随意,但请附上文章地址:-)

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),