首頁 > php教程 > PHP源码 > php下载excel文件,文件无法打开错误

php下载excel文件,文件无法打开错误

PHP中文网
發布: 2016-05-25 17:00:21
原創
1192 人瀏覽過

跳至

if (file_exists(CACHE_PATH . $file_name)){
            //$this->logger->error('file realpath:'.realpath(CACHE_PATH . $file_name));
		    header( 'Pragma: public' );
		    header( 'Expires: 0' );
		    header( 'Content-Encoding: none' );
		    header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' );
		    header( 'Cache-Control: public' );
			header( 'Content-Type: application/vnd.ms-excel');  
		    header( 'Content-Description: File Transfer' );
		    header( 'Content-Disposition: attachment; filename=' . $file_name );
		    header( 'Content-Transfer-Encoding: binary' );
		    header( 'Content-Length: ' . filesize ( CACHE_PATH . $file_name ) );
		    readfile ( CACHE_PATH . $file_name );
		} else {
			$this->logger->error('export model :'.$id.' 错误:未生产文件');
		    echo '
登入後複製
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板