程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php下載excel無法打開的解決方法

php下載excel無法打開的解決方法

編輯:關於PHP編程

     php下載excel後無法打開的解決方法和注意事項,大家參考使用吧

    php下載excel文件, 1、在下載的過程中不要 輸出任何非文件信息,比如 echo log信息。 否則下載後的文件無法打開,提示格式錯誤或者文件被破壞。 2、 輸出的excel格式一定要和後綴名保存一直,否也會提示格式錯誤或者文件被破壞   代碼如下: 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 '<script>alert('export error, file not exists!')</script>';   }    
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved