phpExcelReader で中国語 Excel ファイルを読み取る際のエラーについてアドバイスをお願いします
php ファイルがあり、ユーザーは xls ファイルを選択します。
readExcel.php
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php require_once 'Excel/reader.php'; $file_name=$_REQUEST['file1']; if($file_name!="") { $data = new Spreadsheet_Excel_Reader(); $data->setOutputEncoding('UTF-8'); $data->read(iconv("UTF-8","GB2312",$file_name)); error_reporting(E_ALL ^ E_NOTICE); for ($i = 1; $i <= $data->sheets[0]['numRows']; $i++) { for ($j = 1; $j <= $data->sheets[0]['numCols']; $j++) { echo "\"".$data->sheets[0]['cells'][$i][$j]."\","; } echo "\n"; } } ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>读取Excel</title> </head> <body> <form action="readExcel.php" method="post"> <label for="file">Filename:</label> <input type="file" name="file1" id="file1" /> <br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html>