PHP安全下载文件的方法
发布:smiling 来源: PHP粉丝网 添加日期:2019-10-08 12:42:04 浏览: 评论:0
本文实例讲述了PHP安全下载文件的方法。分享给大家供大家参考,具体如下:
- <?php
- header('Content-Type:text/html;Charset=utf-8');
- define('ROOT_PATH', dirname(__FILE__));
- /**
- * 下载文件
- * @param string $file_path 绝对路径
- */
- function downFile($file_path) {
- //判断文件是否存在
- $file_path = iconv('utf-8', 'gb2312', $file_path); //对可能出现的中文名称进行转码
- if (!file_exists($file_path)) {
- exit('文件不存在!');
- }
- $file_name = basename($file_path); //获取文件名称
- $file_size = filesize($file_path); //获取文件大小
- $fp = fopen($file_path, 'r'); //以只读的方式打开文件
- header("Content-type: application/octet-stream");
- header("Accept-Ranges: bytes");
- header("Accept-Length: {$file_size}");
- header("Content-Disposition: attachment;filename={$file_name}");
- $buffer = 1024;
- $file_count = 0;
- //判断文件是否结束
- while (!feof($fp) && ($file_size-$file_count>0)) {
- $file_data = fread($fp, $buffer);
- $file_count += $buffer;
- echo $file_data;
- //phpfensi.com
- }
- fclose($fp); //关闭文件
- }
- downFile(ROOT_PATH . '/down/Sunset.jpg');
- ?>
Tags: PHP下载文件
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)