phpExcel將讀取的單元格信息保存在內存中,我們可以通過
復制代碼 代碼如下:
PHPExcel_Settings::setCacheStorageMethod()
來設置不同的緩存方式,已達到降低內存消耗的目的!
1、將單元格數據序列化後保存在內存中
復制代碼 代碼如下:
PHPExcel_CachedObjectStorageFactory::cache_in_memory_serialized;
2、將單元格序列化後再進行Gzip壓縮,然後保存在內存中
復制代碼 代碼如下:
PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip;
3、緩存在臨時的磁盤文件中,速度可能會慢一些
復制代碼 代碼如下:
PHPExcel_CachedObjectStorageFactory::cache_to_discISAM;
4、保存在php://temp
復制代碼 代碼如下:
PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp;
5、保存在memcache中
復制代碼 代碼如下:
PHPExcel_CachedObjectStorageFactory::cache_to_memcache
舉例:
第4中方式:
復制代碼 代碼如下:
$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_phpTemp;
$cacheSettings = array( ' memoryCacheSize ' => '8MB'
);
PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);
第5種:
復制代碼 代碼如下:
$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_memcache;
$cacheSettings = array( 'memcacheServer' => 'localhost',
'memcachePort' => 11211,
'cacheTime' => 600
);
PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);
其它的方法
第一個方法,你可以考慮生成多個sheet的方式,不需要生成多個excel文件,根據你數據總量計算每個sheet導出多少行, 下面是PHPExcel生成多個sheet方法:
面是PHPExcel生成多個sheet方法:
復制代碼 代碼如下:
$sheet = $objPHPExcel->getActiveSheet();
$sheet->setCellValue('A1',$x);
$sheet->setCellValue('B1',$y);
第二個方法,你可以考慮ajax來分批導出,不用每次刷新頁面。
復制代碼 代碼如下:
<a href="#" id="export">export to Excel</a>
$('#export').click(function() {
$.ajax({
url: "export.php",
data: getData(), //這個地方你也可以在php裡獲取,一般讀數據庫
success: function(response){
window.location.href = response.url;
}
})
});
復制代碼 代碼如下:
<?php
//export.php
$data = $_POST['data'];
$xls = new PHPExcel();
$xls->loadData($formattedData);
$xls->exportToFile('excel.xls');
$response = array(
'success' => true,
'url' => $url
);
header('Content-type: application/json');
echo json_encode($response);
?>
數據量很大的話,建議采用第二種方法,ajax來導出數據,上面方法簡單給了個流程,具體你自己補充!