最近需要将Excel数据导入到MySQL中,之前一直用的csv格式导入,介于在苹果手机上编辑csv格式会出现问题,所以准备改用xls格式导入,找了找网上的示例,主要采用是PHPExcel或者phpExcelReader,对于我的需求来说后者更为简洁方便,前者功能实在太强大有些驾驭不了。
下载了phpExcelReader后,发现使用一直在报错,遂求助网络,以下为网上转发的解决方法:
转载地址:http://blog.csdn.net/xinzheng_wang/article/details/41116227
错误一:Deprecated: Assigning the return value of new by reference is deprecated in Assigning the return value of new by reference is deprecated in E:\WebSite\htdocs\EXCEL2\Excel\reader.php on line 261
这个是php5.3以后版本的问题,php5.3以下版本不会出现
$this->_ole =& new OLERead();
改为:
$this->_ole = new OLERead();
php5.3开始后,废除了php中的”=&”符号,所以要想复制,直接用=引用即可
错误二:Warning: require_once(Spreadsheet/Excel/Reader/OLERead.php) [function.require-once]: failed to open stream: No such file or directory in E:\WebSite\htdocs\EXCEL2\Excel\reader.php on line 31
修改办法:
将require_once 'Spreadsheet/Excel/Reader/OLERead.php';
改为:require_once 'oleread.inc';
错误三:
Notice: iconv() [function.iconv]: Detected an illegal character in input string in D:\wamp\www\phpExcelReader\Excel\reader.php on line 1056
修改办法:
将example.php里面的
$data->setOutputEncoding('CP1251');
改为:
$data->setOutputEncoding('UTF-8'); //或者你的程序编码是gbk的就改为GB2312
错误四:
Fatal error: Maximum execution time of 30 seconds exceeded in E:\WebSite\htdocs\EXCEL2\Excel\oleread.inc on line 172
下载的里面的jxlrwtest.xls这个excel文件有错误,请自己创建一个
phpExcelReader
下载地址:http://sourceforge.net/projects/phpexcelreader/
相关文章
PHP 5.3 利用suhosin禁用eval函数2019-03-01
记一次PHP7.2+pthreads多线程环境搭建2018-11-02
根据PayPal通知要求,让CentOS下的Nginx支持TLS 1.22018-05-08
树莓派系列(八):PHP之以root权限执行Python GPIO脚本2016-01-16
CentOS下为PHP安装 IMAP 扩展2015-05-26
PHP使用IMAP收取邮件并提取指定内容2015-05-26
一个PHP在线编辑服务端指定TXT文本的实例2015-04-27
一个简单php+mysql快递单号扫码记录网页2015-03-30
转:PHP配置安全检查工具 – PCC2014-09-17
CentOS 6.4下搭建WEB服务环境2013-12-24