解決php excel reader匯出excel中文亂碼的方法:1、如果不使用dump函數,可以透過修改【_defaultEncoding】變數來解決問題;2、如果使用dump函數匯出excel,則需要修改htmlentities函數解決。
解決php excel reader匯出excel中亂碼的方法:
在下載完php excel reader2.21後,請解壓縮至你的PHP環境配置的運行目錄下,打開example.php,首先來看
1$data=new Spreadsheet_Excel_Reader("example.xls");
此語句是用來創建一個php導出excel的實例,在excel_reader2.php檔案中我們可以找到此php excel reader類別的建構子原型
Spreadsheet_Excel_Reader($file='',$store_extended_info=true,$outputEncoding='')
顧名思義,php excel reader匯出excel檔案內容的編碼類型是透過$outputEncoding
參數來指定的,預設的php excel reader匯出excel的編碼類型是透過變數_defaultEncoding
設定,預設為UTF-8,所以通常解決php excel reader導出中文亂碼有兩種方法。
php excel reader匯出excel 中文亂碼解決方法一:
1$data=new Spreadsheet_Excel_Reader("example.xls");
改為
1$data=new Spreadsheet_Excel_Reader("example.xls",true,"GB2312");
php excel reader匯出中文亂碼解決方法二:
開啟excel_reader2.php,找到
1var$_defaultEncoding="UTF-8";
修改為
1var$_defaultEncoding="GB2312";
即可解決php excel reader匯出亂碼的問題。
那為什麼經過上述教學修改後,如果在example.xls中加入中文後example.php仍然輸出亂碼呢?
這是因為其呼叫了php excel reader類別中的dump
函數,此函數是用來將導出的excel檔案內容以HTML的形式輸出,而問題恰恰是由於這個函數中htmlentities函數作怪,htmlentities函數是用來把字元轉換為HTML實體的,原型如下
htmlentities(string,quotestyle,character-set)
其預設的字元集為ISO-8859-1,所以當使用php excel reader的dump函數導出excel出現中文亂碼時,
解決方法一:
1$val=htmlentities($val);
修改為
1$val=htmlentities($val,ENT_COMPAT,"GB2312");
解決方法二:
#1$val=htmlentities($val);
修改為
1$val=htmlspecialchars($val);
php excel reader匯出excel中文亂碼解決方法總結
如果不使用dump函數匯出excel,可以透過修改 _defaultEncoding
變數或透過new Spreadsheet_Excel_Reader(excel檔案名稱,true,」GB2312″);解決匯出excel亂碼問題,如果使用dump函數以HTML的方式匯出excel,則需要修改htmlentities函數解決匯出亂碼問題。
#相關學習推薦:PHP程式設計從入門到精通
以上是如何解php excel reader匯出excel中文亂碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!