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();
        }

  • 相关阅读:
    在rhel6上安装Python 2.7和Python 3.3
    RHEL7 -- Linux搭建FTP虚拟用户
    RHCE7 -- IPv6
    RHEL7 -- nmcli的使用
    设置Adobe Reader打开PDF文件保持记忆功能
    iptalbes -F
    服务器IP地址后修改SQL Server配置
    配置SELINUX
    11G新特性 -- 分区表和增量统计信息
    11G新特性 -- Statistics Preferences
  • 原文地址:https://www.cnblogs.com/eterwei/p/3927825.html
Copyright © 2011-2022 走看看