php利用header函数下载各种文件


Posted in PHP onAugust 24, 2016

本文实例为大家分享了php header函数下载文件实现代码,供大家参考,具体内容如下

http://www.php.net/manual/en/function.readfile.php

<?php
/**
* 下载文件
* header函数
*
*/


dl_file($_GET ['filename']);

function dl_file($file)
{
 $file = ".//images//" . $file;
 //First, see if the file exists
 
 if (! is_file ( $file ))
 {
  die ( "<b>404 File not found!</b>" );
 }
 
 // Gather relevent info about file
 $len = filesize ( $file );
 $filename = basename ( $file );
 $file_extension = strtolower ( substr ( strrchr ( $filename, "." ), 1 ) );
 
 // This will set the Content-Type to the appropriate setting for the file
 switch ($file_extension)
 {
  case "pdf" :
   $ctype = "application/pdf";
   break;
  case "exe" :
   $ctype = "application/octet-stream";
   break;
  case "zip" :
   $ctype = "application/zip";
   break;
  case "doc" :
   $ctype = "application/msword";
   break;
  case "xls" :
   $ctype = "application/vnd.ms-excel";
   break;
  case "ppt" :
   $ctype = "application/vnd.ms-powerpoint";
   break;
  case "gif" :
   $ctype = "image/gif";
   break;
  case "png" :
   $ctype = "image/png";
   break;
  case "jpeg" :
  case "jpg" :
   $ctype = "image/jpg";
   break;
  case "mp3" :
   $ctype = "audio/mpeg";
   break;
  case "wav" :
   $ctype = "audio/x-wav";
   break;
  case "mpeg" :
  case "mpg" :
  case "mpe" :
   $ctype = "video/mpeg";
   break;
  case "mov" :
   $ctype = "video/quicktime";
   break;
  case "avi" :
   $ctype = "video/x-msvideo";
   break;
  
  // The following are for extensions that shouldn't be downloaded
  // (sensitive stuff, like php files)
  case "php" :
  case "htm" :
  case "html" :
  case "txt" :
   die ( "<b>Cannot be used for " . $file_extension . " files!</b>" );
   break;
  
  default :
   $ctype = "application/force-download";
 }
 
 
 $file_temp = fopen ( $file, "r" );
 
 
 // Begin writing headers
 header ( "Pragma: public" );
 header ( "Expires: 0" );
 header ( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
 header ( "Cache-Control: public" );
 header ( "Content-Description: File Transfer" );
 // Use the switch-generated Content-Type
 header ( "Content-Type: $ctype" );
 // Force the download
 $header = "Content-Disposition: attachment; filename=" . $filename . ";";
 header ( $header );
 header ( "Content-Transfer-Encoding: binary" );
 header ( "Content-Length: " . $len );
 
 
 //@readfile ( $file );
 echo fread ( $file_temp, filesize ( $file ) );
 fclose ( $file_temp );
 
 exit ();
}

?>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

PHP 相关文章推荐
Window下PHP三种运行方式图文详解
Jun 11 PHP
PHP Session 变量的使用方法详解与实例代码
Sep 11 PHP
php和jquery实现地图区域数据统计展示数据示例
Feb 12 PHP
让CodeIgniter数据库缓存自动过期的处理的方法
Jun 12 PHP
PHP开发框架kohana3 自定义路由设置示例
Jul 14 PHP
PHP语法自动检查的Vim插件
Aug 11 PHP
分享一个Laravel好用的Cache宏
Mar 02 PHP
php中有关合并某一字段键值相同的数组合并的改进
Mar 10 PHP
PHP加密解密类实例分析
Apr 20 PHP
Laravel 5.1 on SAE环境开发教程【附项目demo源码】
Oct 09 PHP
Yii2语言国际化的配置教程
Aug 19 PHP
PHP后台备份MySQL数据库的源码实例
Mar 18 PHP
php强制下载文件函数
Aug 24 #PHP
PHP简单实现数字分页功能示例
Aug 24 #PHP
PHP自定义函数获取URL中一级域名的方法
Aug 23 #PHP
PHP简单获取网站百度搜索和搜狗搜索收录量的方法
Aug 23 #PHP
PHP简单判断手机设备的方法
Aug 23 #PHP
PHP实现批量检测网站是否能够正常打开的方法
Aug 23 #PHP
PHP Cookie学习笔记
Aug 23 #PHP
You might like
php学习笔记之 函数声明(二)
2011/06/09 PHP
php面向对象的用户登录身份验证
2017/06/08 PHP
PHP PDOStatement::closeCursor讲解
2019/01/30 PHP
IE8对JS通过属性和数组遍历解析不一样的地方探讨
2013/05/06 Javascript
javascript怎么禁用浏览器后退按钮
2014/03/27 Javascript
jQuery on方法传递参数示例
2014/12/09 Javascript
JQuery报错Uncaught TypeError: Illegal invocation的处理方法
2015/03/13 Javascript
jquery ui resize 中border-box的bug修正
2015/04/26 Javascript
javascript常用功能汇总
2015/07/05 Javascript
Nodejs全局安装和本地安装的不同之处
2016/07/04 NodeJs
js简单实现网页换肤功能
2017/04/07 Javascript
vue自定义过滤器创建和使用方法详解
2017/11/06 Javascript
vue click.stop阻止点击事件继续传播的方法
2018/09/04 Javascript
vue实现父子组件之间的通信以及兄弟组件的通信功能示例
2019/01/29 Javascript
微信小程序 腾讯地图SDK 获取当前地址实现解析
2019/08/12 Javascript
JavaScript原型式继承实现方法
2019/11/06 Javascript
Javascript作用域和作用域链原理解析
2020/03/03 Javascript
Node.js API详解之 string_decoder用法实例分析
2020/04/29 Javascript
[57:55]完美世界DOTA2联赛PWL S3 Magma vs Phoenix 第二场 12.12
2020/12/16 DOTA
深入解析Python编程中super关键字的用法
2016/06/24 Python
Python利用operator模块实现对象的多级排序详解
2017/05/09 Python
基于html5 canvas实现漫天飞雪效果实例
2014/09/10 HTML / CSS
详解HTML5 Canvas绘制不规则图形时的非零环绕原则
2016/03/21 HTML / CSS
html5 input输入实时检测以及延时优化
2018/07/18 HTML / CSS
瑞士香水购物网站:Parfumcity.ch
2017/01/14 全球购物
澳大利亚最好的厨具店:Kitchen Warehouse
2018/03/13 全球购物
英国领先的野生鸟类食品供应商:GardenBird
2018/08/09 全球购物
给同事的道歉信
2014/01/11 职场文书
2014年元旦联欢会活动策划方案
2014/02/16 职场文书
先进员工事迹材料
2014/12/20 职场文书
2014年个人年终总结
2015/03/09 职场文书
2015年纪念“卢沟桥事变”78周年活动方案
2015/05/06 职场文书
开学典礼校长致辞
2015/07/29 职场文书
护士旷工检讨书
2015/08/15 职场文书
python requests模块的使用示例
2021/04/07 Python
MySQL数据库 安全管理
2022/05/06 MySQL