我正在从事一个使用ole类将数据导出到XLS的项目。我们使用的是PHP 5.2.14,导出时xls文件的格式被折叠,我在xls文件的前几行中得到以下错误:
Warning: Call-time pass-by-reference has been deprecated in /opt/maut/teszt/include/php_writeexcel/php_ole/class.ole_pps_root.php on line 305在第305行,有:
array_push($raList, &$aThis[0]);如果删除&,则无法打开生成的xls文件,因为Office说:通用输入/输出错误
我能做什么?有什么想法吗?
发布于 2013-12-04 15:16:05
您可以简单地将array_push()代码替换为以下代码:
$raList[] = & $aThis[0];这将做同样的事情,但不会产生警告。
https://stackoverflow.com/questions/20379001
复制相似问题