phpexcel

服务器

PHPExcel循环生成sheet报错You tried to set a sheet active by the out of bounds index: 1. The actual number of sheets is 1

PHPExcel是一款非常强大的PHP操作EXCEL库,使用PHPExcel可以帮助我们简单、高效实现从Excel读取Excel的数据和导出数据到Excel。 最近在使用PHPExcel循环生成多个sheet时,遇到You tried to set a sheet active by the out of bounds index: 1. The actua...
赞 (0)阅读(2477)
虚拟主机

phpexcel导出中文文件名乱码的解决办法

使用phpexcel类库导出excel文件,文件名为中文时,在chrome浏览器下导出正常,在IE内核浏览器下导出文件名显示乱码,解决办法就是通过iconv函数转换编码,从utf-8转为gb2312,具体代码如下: publicfunctionexportExcel($expTitle,$expCellName,$expTableData){     $xl...
赞 (0)阅读(1717)