我想扩展允许的内存大小。目前我的excel下载没有下载它抛出以下错误:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried
to allocate 32 bytes) in application/libraries/Excel/PHPExcel/Cell.php
on line 839
答案 0 :(得分:0)
增加php中的内存限制:
ini_set('memory_limit', '1024M');
此后内存限制为1 GB。