解決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匯出excel中文亂碼有兩種方法。
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中文亂碼解決方法二:
開啟excel_reader2.php,找到
1var$_defaultEncoding="UTF-8";
修改為
1var$_defaultEncoding="GB2312";
即可解決php excel reader匯出excel亂碼的問題。
那為什麼通過上述教學修改後,如果在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函數解決匯出excel亂碼問題。
以上就是如何解決php excel reader匯出excel中文亂碼?的詳細內容,更多請關注TW511.COM其它相關文章!