Home > Backend Development > PHP Tutorial > 小妹请问phpExcelReader读取中文excel文件出错有关问题

小妹请问phpExcelReader读取中文excel文件出错有关问题

WBOY
Release: 2016-06-13 10:10:24
Original
836 people have browsed it

小妹请教phpExcelReader读取中文excel文件出错问题
我有一个php文件,用户选择xls文件的。

readExcel.php

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?phprequire_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 sheets[0]['numRows']; $i++) {        for ($j = 1; $j sheets[0]['numCols']; $j++) {            echo "\"".$data->sheets[0]['cells'][$i][$j]."\",";        }        echo "\n";    }}?><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>读取Excel</title>
Copy after login


我的phpExcelReader是从
http://cdnetworks-kr-2.dl.sourceforge.net/project/phpexcelreader/Spreadsheet_Excel_Reader/Interim%20update/phpExcelReader.zip

下载的。
就改了reader.php里require_once 'oleread.inc';
这一个地方。

我写的这个php页面读取非中文的Excel文件不报错,并且可以读取。

如果读取中文名称的Excel文件就报错。
The filename XXX.xls is not readable

例如我在D盘根目录有两个Excel文件,一个叫abc.xls,一个叫 测试.xls

两个xls里的内容都是完全一致的。

读取abc.xls就正常。

读取测试.xls就报
The filename 测试.xls is not readable

请用过phpExcelReader 帮我解释一下,如何修改。

------解决方案--------------------
iconv("UTF-8","gb2312",$file_name)

这样转换试试

------解决方案--------------------
echo iconv("UTF-8","gb2312",$file_name);
得到什么

------解决方案--------------------
探讨

得到结果如下:
测试.xls
The filename 测试.xls is not readable

------解决方案--------------------
一般都不支持中文路径
------解决方案--------------------
参考:http://witmax.cn/php-read-excel.html
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template