FileDownload使用说明

DoitPHP的扩展类FileDownload,仅用于文件下载(DoitPHP框架文件下载专用推展类)。

类方法使用说明

1、getData($file, $rename = null)

|http下载文件。 读取文件然后以浏览器header的方式下载。支持静态调用
|参数说明:
|$file : 所要下载的文件路径
|$rename : 文件重命名后的名称

使用举例

例一、

Controller文件代码内容如下:

  1. public function indexAction() {
  2.  
  3. $filePath = '/home/tommy/doitphp_v2.4.zip'
  4. FileDownload::getData($filePath);
  5. }

原文: http://www.doitphp.com/index/documentation/?articleid=40