首页 > Web开发 > 详细

php文件下载

时间:2017-11-28 00:15:49      阅读:157      评论:0      收藏:0      [点我收藏+]

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文件下载

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!