码迷,mamicode.com
首页 > Web开发 > 详细

php文件下载

时间:2017-11-28 01:38:29      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:下载   文件路径   stream   文件下载   oct   content   ade   php   name   

download(basename($files),$files);//文件路径
function download($fileName,$file){
header("Content-type:application/octet-stream");
header("Content-Disposition:attachment;filename={$fileName}");
header("Accept-ranges:bytes");
header("Accept-length:".filesize($file));
readfile($file);
}

php文件下载

标签:下载   文件路径   stream   文件下载   oct   content   ade   php   name   

原文地址:http://www.cnblogs.com/globalfy/p/7906678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!