php文件下载功能

WBOY
Release: 2016-06-23 13:17:57
Original
807 people have browsed it

/**************************文件下载**************************/

//演示下载一个图片

$file_name="坚持.jpg";//php6中英文都支持了

//$file_path="../img/".$file_name;//相对路径

//打开文件

if(!file_exists($file_name))//$file_path

{

echo "文件不存在";

return ;//终止程序执行

}

$fp=fopen($file_name,"r");//$file_path

//获取下载文件的大小

//$file_size=filesize($file_name);

//echo "文件的大小是".$file_size;


//告诉浏览器返回的是文件的形式

header("Content-type: application/octet-stream");

//是以字节大小返回

header("Accept-Ranges: Bytes");

//告诉浏览器文件有多大

header("Accept-Length: $file_size");

//客户端弹出的对话框对应的文件名

header("Content-Disposition: attachment;filename=".$file_name);


//向客户端回送数据,用循环的方式

$buffer=1024;//定义一次传输的大小

//判断文件是否传送结束

while(!feof($fp))

{

$file_data=fread($fp,$buffer);

//把部分数据回送给浏览器

echo $file_data;

}

//关闭文件

fclose($fp);


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template