zoukankan      html  css  js  c++  java
  • php的文件下载

     * 下载文件
         *
         * @param string $downloadFile            
         * @param string $downloadName            
         */
        private function downLoad($downloadFile, $downloadName) {
            header ( "Cache-Control: public" );
            header ( "Content-Description: File Transfer" );
            header ( 'Content-disposition: attachment; filename=' . $downloadName ); // 文件名
            header ( "Content-Type: application/zip" ); // zip格式的
            header ( "Content-Transfer-Encoding: binary" ); // 告诉浏览器,这是二进制文件
            header ( 'Content-Length: ' . filesize ( $downloadFile ) ); // 告诉浏览器,文件大小
            @readfile ( $downloadFile );
        }
        ------------------------------------------------------------------------------------

    /**
         * 客户授信申请附件下载
         */
        public function attachmentDownloadAction(){
            $request = $this->getRequest();
            
            $filePath = $request->getParam('filePath');
            $filePath = Zend_Filter::filterStatic ( $filePath, 'StringTrim' );
            $filePath = Zend_Filter::filterStatic ( $filePath, 'StripTags' );
            $filePath = APPLICATION_PATH."/../public".$filePath;
            
            $fileName = $request->getParam('fileName');
            $fileName = Zend_Filter::filterStatic ( $fileName, 'StringTrim' );
            $fileName = Zend_Filter::filterStatic ( $fileName, 'StripTags' );
            $fileName = iconv("UTF-8", "GB2312", $fileName);
            
            if (file_exists($filePath)) {
                $this->attachmentDownload($filePath,$fileName);
            } else {
                throw new Member_Model_NotExist_Exception('附件不存在!');
            }
        }
        private function attachmentDownload ($filePath,$fileName)
        {
            $file = file_get_contents($filePath);
            $this->getResponse()
                ->setBody($file)
                ->setHeader('Content-Type', 'application/octet-stream')
                ->setHeader('Content-Disposition',
                    'attachment; filename="'.$fileName.'"')
                ->setHeader('Content-Length', strlen($file));
            
            $this->_helper->layout->disableLayout();
            $this->_helper->viewRenderer->setNoRender(true);
            
            header('Set-Cookie: fileDownload=true; path=/');
            $this->getResponse()->sendResponse();
        }

  • 相关阅读:
    全--教程API, gem 'rest-client'(用于发简单请求); 请求测试;
    GoRails教程自建Rails 的 API; gem 'jbuilder'简单用法;使用JWT进行验证(git上的实做);curl命令使用;status状态码;JWT文档翻译摘录;
    go Rails 知识点,Concepts Series:url和parameter; 建立Rails App Templates;报错页面debug; counter_cache
    FontAwesome::Sass(5.x版)使用帮助。
    问题记录:
    slim(4621✨)
    物联网平台开发及应用:基于CC2530和ZigBee
    CATIA V5-6 R2017基础、进阶、高手一本通
    计算机组装与维护标准教程(2015—2018版)
    Web程序设计——ASP.NET(第2版)
  • 原文地址:https://www.cnblogs.com/eterwei/p/3927825.html
Copyright © 2011-2022 走看看