文件下載功能

1,在前端開啟按鈕這裡加個超連結

#超連結裡攜帶檔案的id

微信图片_20180302175252.png

#2,取得get請求執行下載設定:

#
<?php
//获取点击事件的get请求
$downloadfile_id=isset($_GET['download'])?intval($_GET['download']):"";
//下载文件功能
if($downloadfile_id!=""){
$sql="select *from netdisk_file where file_id=$downloadfile_id";
if($downloadfile=fetchRow($sql)){
//获取文件大小
$file_size=filesize($downloadfile);
//设置HTTP响应消息为文件下载
header('content-type :octet-stream');
header('content-length: '.$file_size);
header('content-disposition: attachment;filename="'.$downloadfile['file_name'].'"');
//以只读的方式打开文件
$fp=fopen($downloadfile['file_save'],'r');
//读取文件并输出
$buffer=1024;  //缓存
$file_count=0; //文件大小计数
//判断文件是否结束
while(!feof($fp) && ($file_size-$file_count>0)){
$file_data=fread($fp,$buffer);
$file_count+=$buffer;
echo $file_data;
}
fclose($fp);//关闭文件
//终止脚本
die;
}else{
echo "文件不存在";
};
}

3,頁面展示:

微信图片_20180302175859.png微信图片_20180302175901.png

繼續學習
||
<?php echo "文件下载操作"; ?>
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!