【发布时间】:2014-04-16 07:23:08
【问题描述】:
我正在尝试在我的硬盘上打开一个 excel 文件并获取。
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1032
bytes) in C:\WEB\Classes\PHPExcel\Cell.php on line 1228
【问题讨论】:
我正在尝试在我的硬盘上打开一个 excel 文件并获取。
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1032
bytes) in C:\WEB\Classes\PHPExcel\Cell.php on line 1228
【问题讨论】:
PHP 允许使用 128 MB 内存。
试试这个
<?php ini_set('memory_limit', '-1'); ?>
【讨论】: