php文件下载

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

posted @ 2017-11-27 23:17  globalfy  阅读(153)  评论(0编辑  收藏  举报