实现文件下载功能 PHP 代码片断
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-13 11:03:19 浏览: 评论:0
网站有从远程服务器通过http下载文件的需求,于是写了个提供文件下载的脚本,下面我们来看看用PHP如何实现文件下载功能的.
偶尔用用PHP写点这种很小很小的Web程序,还是蛮简单方便的.
PHP实现文件下载功能的代码如下:
- <?php
- $base_dir = "/usr/share/nginx/html/";
- $myfile = $base_dir . $_GET["file"];
- //echo $myfile;
- //开源软件:phpfensi.com
- if( ! file_exists($myfile) ) {
- echo "file: " . $myfile . " doesn't exist.";
- } elseif ( is_dir($myfile) ) {
- echo "file: " . $myfile . " is a directory.";
- } else {
- header("Content-type: application/octet-stream");
- header('Content-Disposition: attachment; filename="' . basename($myfile) . '"');
- header("Content-Length: ". filesize($myfile));
- readfile($myfile);
- }
- ?>
github:https://github.com/smilejay/other-code/blob/master/php/download.php
另外,一个牛人分析一下使用apache/nginx的一些模块让php实现问下下载更加的高效:
http://www.laruence.com/2012/05/02/2613.html
Tags: PHP文件下载 PHP下载实例
相关文章
- ·图解PHP文件下载原理实例(2015-04-04)
- ·PHP实现文件的下载实例代码(2015-04-09)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)