基本上,由于内存问题(不断耗尽),我试图启用单元缓存,它是一个相当大的电子表格。从我读过的内容来看,在线单元缓存是一个很好的方法
从我在网上找到的示例来看,它看起来像这样
$oExcel = new PHPExcel();
$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp;
$cacheSettings = array( 'memoryCacheSize' => '512MB');
PHPExcel_Settings::setCacheStorageMethod($cacheMethod,$cacheSettings);
上面的问题是我没有用设置设置excel对象吗?
$oExcel->setCacheStorageMethod($cacheMethod,$cacheSettings); // this returns method not found error
我想我只是初始化错了吗?