php如何实现下载文件

发布时间:2024-11-30 点击:17
php实现下载文件的方法:1、直接添加文件链接方法;2、传递参数查找并跳转到下载链接方法;3、使用函数【head()】和【fread()】函数把文件直接输出到浏览器方法。
php实现下载文件的方法:
1、直接添加文件链接
<button> <a href = "http://localhost/down.zip"> 下载文件</button>点击该按钮下载:
相关学习推荐:php编程(视频)
2、传递参数查找并跳转到下载链接
传递参数:
<button> <a href = "http://localhost?f='down'"> 下载文件</button>查找文件并挑战到下载链接:
<?php$down = $_get['f']; //获取文件参数$filename = $down.'.zip'; //获取文件名称$dir ="down/"; //相对于网站根目录的下载目录路径$down_host = $_server['http_host'].'/'; //当前域名//判断如果文件存在,则跳转到下载路径if(file_exists(__dir__.'/'.$dir.$filename)){ header('location:http://'.$down_host.$dir.$filename);}else{ header('http/1.1 404 not found');}结果:
文件存在
文件不存在
3、head() 和 fread()函数把文件直接输出到浏览器
<?php $file_name = "down";$file_name = "down.zip"; //下载文件名 $file_dir = "./down/"; //下载文件存放目录 //检查文件是否存在 if (! file_exists ( $file_dir . $file_name )) { header('http/1.1 404 not found'); } else { //以只读和二进制模式打开文件 $file = fopen ( $file_dir . $file_name, "rb" ); //告诉浏览器这是一个文件流格式的文件 header ( "content-type: application/octet-stream" ); //请求范围的度量单位 header ( "accept-ranges: bytes" ); //content-length是指定包含于请求或响应中数据的字节长度 header ( "accept-length: " . filesize ( $file_dir . $file_name ) ); //用来告诉浏览器,文件是可以当做附件被下载,下载后的文件名称为$file_name该变量的值。 header ( "content-disposition: attachment; filename=" . $file_name ); //读取文件内容并直接输出到浏览器 echo fread ( $file, filesize ( $file_dir . $file_name ) ); fclose ( $file ); exit (); }结果:和第二个一样
总结:第一个和第二个操作比较简单,但是容易暴露文件的真实地址,安全性不高,第三种能够较好的把文件的真实地址隐藏起来
相关推荐:编程视频课程

云服务器挂机游戏安全吗
关闭电脑开机启动项的方法
“淘宝买啊”MR购物 新一代交互购物体验
查看端口被占用
为什么有的云服务器很便宜呢
动态壁纸音乐怎么设置 动态壁纸有声音吗
edm怎么做
不错的云服务器代理网站平台