下载文件

来源:互联网 发布:百度建站优化排名公司 编辑:程序博客网 时间:2024/06/05 11:42
public function downLoadAction(){        $request = $this->getRequest();        $filePath = $request->get('filePath');        header('Content-Type:application/octet-stream');        header('Content-Disposition: attachment; filename='.basename($filePath));        $file = fopen($filePath,'rb');        print_r(fread($file,filesize($filePath)));        fclose($file);    }

原创粉丝点击