- 浏览: 13746214 次
- 性别:
- 来自: 洛杉矶
文章分类
- 全部博客 (1994)
- Php / Pear / Mysql / Node.js (378)
- Javascript /Jquery / Bootstrap / Web (435)
- Phone / IOS / Objective-C / Swift (137)
- Ubuntu / Mac / Github / Aptana / Nginx / Shell / Linux (335)
- Perl / Koha / Ruby / Markdown (8)
- Java / Jsp (12)
- Python 2 / Wxpython (25)
- Codeigniter / CakePHP (32)
- Div / Css / XML / HTML5 (179)
- WP / Joomla! / Magento / Shopify / Drupal / Moodle / Zimbra (275)
- Apache / VPN / Software (31)
- AS3.0/2.0 / Flex / Flash (45)
- Smarty (6)
- SEO (24)
- Google / Facebook / Pinterest / SNS (80)
- Tools (22)
最新评论
-
1455975567:
xuezhongyu01 写道wocan23 写道我想问下那个 ...
Mysql: LBS实现查找附近的人 (两经纬度之间的距离) -
xuezhongyu01:
wocan23 写道我想问下那个111.1是怎么得来的我也看不 ...
Mysql: LBS实现查找附近的人 (两经纬度之间的距离) -
18335864773:
试试 pageoffice 在线打开 PDF 文件吧. pag ...
jquery在线预览PDF文件,打开PDF文件 -
青春依旧:
opacity: 0.5; 个人喜欢这种方式!关于其他css特 ...
css透明度的设置 (兼容所有浏览器) -
July01:
推荐用StratoIO打印控件,浏览器和系统的兼容性都很好,而 ...
搞定网页打印自动分页问题
PHP 文件下载类
<? //==================================================== // FileName:download.class.php // Summary: 文件下载类 // // 使用范例: // $download = new download('php,exe,html',false); // if(!$download->downloadfile($filename)) // { // echo $download->geterrormsg(); // } //==================================================== class download { var $debug=true; var $errormsg=''; var $Filter=array(); var $filename=''; var $mineType='text/plain'; var $xlq_filetype=array(); function __construct($fileFilter='',$isdebug=true) { $this->setFilter($fileFilter); $this->setdebug($isdebug); $this->setfiletype(); } function setFilter($fileFilter) { if(empty($fileFilter)) return ; $this->Filter=explode(',',strtolower($fileFilter)); } function setdebug($debug) { $this->debug=$debug; } function setfilename($filename) { $this->filename=$filename; } function downloadfile($filename) { $this->setfilename($filename); if($this->filecheck()) { $fn = array_pop( explode( '/', strtr( $this->filename, '\\', '/' ) ) ); header( "Pragma: public" ); header( "Expires: 0" ); // set expiration time header( "Cache-Component: must-revalidate, post-check=0, pre-check=0" ); header( "Content-type:".$this->mineType ); header( "Content-Length: " . filesize( $this->filename ) ); header( "Content-Disposition: attachment; filename=\"$fn\"" ); header( 'Content-Transfer-Encoding: binary' ); readfile( $this->filename ); return true; } else { return false; } } function geterrormsg() { return $this->errormsg; } function filecheck() { $filename=$this->filename; if(file_exists($filename)) { $filetype=strtolower(array_pop(explode('.',$filename))); if(in_array($filetype,$this->Filter)) { $this->errormsg.=$filename.'不允许下载!'; if($this->debug) exit($filename.'不允许下载!') ; return false; }else { if ( function_exists( "mime_content_type" ) ) { $this->mineType = mime_content_type( $filename ); } if(empty($this->mineType)) { if( isset($this->xlq_filetype[$filetype]) ) $this->mineType = $this->xlq_filetype[$filetype]; } if(!empty($this->mineType)) return true; else { $this->errormsg.='获取'.$filename.'文件类型时候发生错误,或者不存在预定文件类型内'; if($this->debug) exit('获取文件类型出错'); return false; } } }else { $this->errormsg.=$filename.'不存在!'; if($this->debug) exit($filename.'不存在!') ; return false; } } function setfiletype() { $this->xlq_filetype['chm']='application/octet-stream'; $this->xlq_filetype['ppt']='application/vnd.ms-powerpoint'; $this->xlq_filetype['xls']='application/vnd.ms-excel'; $this->xlq_filetype['doc']='application/msword'; $this->xlq_filetype['exe']='application/octet-stream'; $this->xlq_filetype['rar']='application/octet-stream'; $this->xlq_filetype['js']="javascript/js"; $this->xlq_filetype['css']="text/css"; $this->xlq_filetype['hqx']="application/mac-binhex40"; $this->xlq_filetype['bin']="application/octet-stream"; $this->xlq_filetype['oda']="application/oda"; $this->xlq_filetype['pdf']="application/pdf"; $this->xlq_filetype['ai']="application/postsrcipt"; $this->xlq_filetype['eps']="application/postsrcipt"; $this->xlq_filetype['es']="application/postsrcipt"; $this->xlq_filetype['rtf']="application/rtf"; $this->xlq_filetype['mif']="application/x-mif"; $this->xlq_filetype['csh']="application/x-csh"; $this->xlq_filetype['dvi']="application/x-dvi"; $this->xlq_filetype['hdf']="application/x-hdf"; $this->xlq_filetype['nc']="application/x-netcdf"; $this->xlq_filetype['cdf']="application/x-netcdf"; $this->xlq_filetype['latex']="application/x-latex"; $this->xlq_filetype['ts']="application/x-troll-ts"; $this->xlq_filetype['src']="application/x-wais-source"; $this->xlq_filetype['zip']="application/zip"; $this->xlq_filetype['bcpio']="application/x-bcpio"; $this->xlq_filetype['cpio']="application/x-cpio"; $this->xlq_filetype['gtar']="application/x-gtar"; $this->xlq_filetype['shar']="application/x-shar"; $this->xlq_filetype['sv4cpio']="application/x-sv4cpio"; $this->xlq_filetype['sv4crc']="application/x-sv4crc"; $this->xlq_filetype['tar']="application/x-tar"; $this->xlq_filetype['ustar']="application/x-ustar"; $this->xlq_filetype['man']="application/x-troff-man"; $this->xlq_filetype['sh']="application/x-sh"; $this->xlq_filetype['tcl']="application/x-tcl"; $this->xlq_filetype['tex']="application/x-tex"; $this->xlq_filetype['texi']="application/x-texinfo"; $this->xlq_filetype['texinfo']="application/x-texinfo"; $this->xlq_filetype['t']="application/x-troff"; $this->xlq_filetype['tr']="application/x-troff"; $this->xlq_filetype['roff']="application/x-troff"; $this->xlq_filetype['shar']="application/x-shar"; $this->xlq_filetype['me']="application/x-troll-me"; $this->xlq_filetype['ts']="application/x-troll-ts"; $this->xlq_filetype['gif']="image/gif"; $this->xlq_filetype['jpeg']="image/pjpeg"; $this->xlq_filetype['jpg']="image/pjpeg"; $this->xlq_filetype['jpe']="image/pjpeg"; $this->xlq_filetype['ras']="image/x-cmu-raster"; $this->xlq_filetype['pbm']="image/x-portable-bitmap"; $this->xlq_filetype['ppm']="image/x-portable-pixmap"; $this->xlq_filetype['xbm']="image/x-xbitmap"; $this->xlq_filetype['xwd']="image/x-xwindowdump"; $this->xlq_filetype['ief']="image/ief"; $this->xlq_filetype['tif']="image/tiff"; $this->xlq_filetype['tiff']="image/tiff"; $this->xlq_filetype['pnm']="image/x-portable-anymap"; $this->xlq_filetype['pgm']="image/x-portable-graymap"; $this->xlq_filetype['rgb']="image/x-rgb"; $this->xlq_filetype['xpm']="image/x-xpixmap"; $this->xlq_filetype['txt']="text/plain"; $this->xlq_filetype['c']="text/plain"; $this->xlq_filetype['cc']="text/plain"; $this->xlq_filetype['h']="text/plain"; $this->xlq_filetype['html']="text/html"; $this->xlq_filetype['htm']="text/html"; $this->xlq_filetype['htl']="text/html"; $this->xlq_filetype['rtx']="text/richtext"; $this->xlq_filetype['etx']="text/x-setext"; $this->xlq_filetype['tsv']="text/tab-separated-values"; $this->xlq_filetype['mpeg']="video/mpeg"; $this->xlq_filetype['mpg']="video/mpeg"; $this->xlq_filetype['mpe']="video/mpeg"; $this->xlq_filetype['avi']="video/x-msvideo"; $this->xlq_filetype['qt']="video/quicktime"; $this->xlq_filetype['mov']="video/quicktime"; $this->xlq_filetype['moov']="video/quicktime"; $this->xlq_filetype['movie']="video/x-sgi-movie"; $this->xlq_filetype['au']="audio/basic"; $this->xlq_filetype['snd']="audio/basic"; $this->xlq_filetype['wav']="audio/x-wav"; $this->xlq_filetype['aif']="audio/x-aiff"; $this->xlq_filetype['aiff']="audio/x-aiff"; $this->xlq_filetype['aifc']="audio/x-aiff"; $this->xlq_filetype['swf']="application/x-shockwave-flash"; } }
PHP header发送各种类型文件下载
发表评论
-
PHP: 在类(class)中加载动态函数, 变量函数或半变量函数 variable function/method
2016-09-03 07:54 7185最终实例在下方 以前 ... -
MySQL入门 (七) : 储存引擎与资料型态
2016-09-03 07:49 45641 表格与储存引擎 表格(table)是资料库中用来储存 ... -
MySQL入门 (六) : 字元集与资料库
2016-09-03 07:47 45761 Character Set与Collation 任何 ... -
MySQL入门 (五) : CRUD 与资料维护
2016-09-03 07:46 54881 取得表格资讯 1.1 DESCRIBE指令 「 ... -
MySQL入门 (四) : JOIN 与UNION 查询
2016-09-03 07:42 45111 使用多个表格 在「world」资料库的「countr ... -
PHP: 关键字global 和 超全局变量$GLOBALS的用法、解释、区别
2016-08-31 12:07 5046$GLOBALS 是一个关联数组,每一个变量为一个 ... -
MySQL入门 (三) : 运算式与函式
2016-08-31 12:01 4392运算式(expressions)已经 ... -
MySQL入门 (二) : SELECT 基础查询
2016-08-31 11:56 46901 查询资料前的基本概念 1.1 表格、纪录 ... -
MySQL入门 (一) : 资料库概论与MySQL的安装
2016-08-31 11:51 44691. 储存与管理资料 储存与管理资料一直是资讯应用上最基本 ... -
MySQL入门 (九) : 子查询 Subquery
2016-08-30 02:26 44541 一个叙述中的查询叙述 子查询(subquery)是一 ... -
PHP: 用readonly取代disabled来获取input值 submit a disabled input in a form could not ge
2016-08-30 02:21 2718The form is like below; <f ... -
PHP7革新与性能优化
2016-08-30 02:20 2155有幸参与2015年的PHP技 ... -
Mysql: 图解 inner join、left join、right join、full outer join、union、union all的区别
2016-08-18 06:03 3131对于SQL的Join,在学习起来可能是比较乱的。我们知道, ... -
Comet 反Ajax: 基于jQuery与PHP实现Ajax长轮询(LongPoll)
2016-08-18 06:00 1386传统的AJAX轮询方式,客服端以用户定义的时间间隔去服务器上 ... -
PHP:ServerPush (Comet推送) 技术的探讨
2016-08-18 05:58 1046PHP中Push(推送)技术的探讨 [http://vi ... -
PHP: 手把手编写自己的 MVC 框架实例教程
2016-08-16 05:33 18221 什么是MVC MVC模式(Model-View-Con ... -
PHP5: mysqli 插入, 查询, 更新和删除 Insert Update Delete Using mysqli (CRUD)
2016-07-29 12:55 1757原文: PHP5: mysqli 插入, 查询, 更新 ... -
MongoDB 教程索引 (附有视频)
2016-07-27 10:54 755MongoDB 教程索引 MongoDB 教程一: ... -
Node.js 模块之Nimble流程控制
2016-07-18 12:59 1087NodeJS异步的特性有时候 ... -
Node.js web应用模块之Supervisor
2016-07-18 12:56 2335在开发或调试Node.js应 ...
相关推荐
总的来说,PHP文件下载类通过控制HTTP响应头,实现了将服务器上的文件传递给用户浏览器进行下载的功能。这在构建Web应用时非常实用,能够确保用户能够安全、便捷地获取服务器上的资源。理解并掌握这种技术对于PHP...
本文将详细介绍一个PHP文件下载类及其用法,帮助你理解如何在自己的项目中实现类似功能。 首先,`download_file.php` 文件可能包含了下载类的定义。此类通常包含以下几个核心方法: 1. `setFilePath()`:设置要...
PHP文件下载类,可以直接调用,操作文件下载
为了方便和高效地处理文件下载,开发者通常会创建一个专门的文件下载类。这个类可以帮助我们管理文件路径、设定下载头、控制下载速度等。让我们深入探讨一下`download.class.php`可能包含的代码结构和关键知识点。 ...
这里我们关注的焦点是“基于HTTP PHP文件下载类”。这个压缩包文件包含了一个名为`httpdownload.class.php`的文件,这通常是一个实现了文件下载功能的PHP类。下面我们将详细探讨这个类的工作原理以及相关的PHP知识。...
首先,"php文件下载类"是指一个用PHP编写的类,其主要功能是处理文件的下载操作。这样的类通常包含一系列方法,如设置下载文件路径、设置下载头信息、控制下载速度等。通过创建此类的实例并调用相应方法,可以轻松地...
// $download=new download('php,exe,html',false); // if(!$download->downloadfile($filename)) // { // echo $download->geterrormsg(); // }
断点续传允许用户在中断下载后,从上次停止...总的来说,支持断点续传的PHP文件下载类是Web开发中一个实用的工具,它使得大文件下载变得更加友好和高效。理解和掌握其工作原理及实现方式对于提升PHP开发技能至关重要。
以下是对"PHP文件上传类"的详细解析: 1. **类的结构**: - 一个PHP文件上传类通常包含一系列的方法,如`upload()`用于执行实际的文件上传操作,`checkFileSize()`用于检查文件大小,`checkFileType()`用于验证...
PHP文件下载类就是为了解决这个问题而设计的,它封装了处理文件下载所需的核心功能,使得开发者可以更方便、高效地实现文件的下载服务。下面将详细阐述PHP文件下载的原理以及如何使用此类。 首先,理解PHP是如何...
本教程将基于提供的"php远程文件下载类.zip"详细解释如何实现这一功能,并探讨相关知识点。 首先,让我们理解一下“类库下载-php远程文件下载类”的概念。类库是一种组织代码的方式,它封装了一系列相关功能,方便...
"PHP文件下载过滤类"是指一个专门设计用于控制和管理文件下载的安全类,它可以防止非法或者恶意的下载请求,确保只有合法的文件能被用户访问。这个类通常会包含一系列的验证和过滤机制,如检查文件路径的合法性、...
在PHP开发中,文件上传是常见的功能之一,用于让用户上传图片、文档等文件到服务器。为了简化这个过程,开发者通常会使用预定义的类库或自定义的上传类。在这个"php中一个很好用的文件上传类.zip"压缩包中,包含了一...
这个压缩包"php下载远程文件到本地存储的函数类.zip"提供了一个专门解决这个问题的函数类,它可以帮助开发者更方便、高效地处理此类任务。下面我们将详细讨论这个函数类的工作原理、使用方法以及可能涉及的相关知识...
本资源提供了一个名为“从FTP获取自动下载文件的php类”的工具,它是一个PHP类库,可以帮助开发者方便地与FTP服务器进行交互,实现文件的自动化下载。 该PHP类的主要功能包括: 1. **连接FTP服务器**:通过提供...
结合以上功能,我们可以创建一个完整的类来实现远程ZIP文件的下载和解压: ```php class RemoteFileUpdater { public function update($remoteUrl, $localDestination) { // 下载远程ZIP文件 $downloadedFile = ...
使用curl的批处理方法,开启多进程,实现批量下载文件。批量下载文件一般使用循环的方式,逐一执行下载。但在带宽与服务器性能允许的情况下,使用多进程进行...本类利用curl的多进程请求方法,实现多进程同时下载文件。
"php中文网免费下载站.txt" 和 "php中文网下载站.url" 可能是与这个类库相关的文档或链接,提供了更多学习资源和社区支持,对于初学者来说是非常有价值的参考资料。 总的来说,"php多文件上传类.zip" 提供了一个...
【PHP文件管理系统源码详解】 PHP文件管理系统是一种基于PHP编程语言构建的应用程序,它允许用户通过Web界面来创建、编辑、删除、搜索和管理服务器上的文件和目录。这样的系统对于网站管理员、开发人员以及需要远程...
`\PhpOffice\PhpWord\IOFactory`类提供了读写文件的方法,如`load()`用于加载文档,`save()`用于保存文档。 5. **导出格式**:除了默认的.docx格式,PHPWord还支持导出为PDF、HTML、ODT等多种格式,满足不同场景的...