phpExcel導出大量數據出現內存溢出錯誤的解決方法

phpExcel將讀取的單元格信息保存在內存中,咱們能夠經過php

代碼以下:
PHPExcel_Settings::setCacheStorageMethod()

來設置不一樣的緩存方式,已達到下降內存消耗的目的!ajax

一、將單元格數據序列化後保存在內存中數據庫

代碼以下:

PHPExcel_CachedObjectStorageFactory::cache_in_memory_serialized;

二、將單元格序列化後再進行Gzip壓縮,而後保存在內存中json

代碼以下:

PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip;

三、緩存在臨時的磁盤文件中,速度可能會慢一些緩存

代碼以下:

PHPExcel_CachedObjectStorageFactory::cache_to_discISAM;

四、保存在php://tempapp

代碼以下:

PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp;

五、保存在memcache中url

代碼以下:

PHPExcel_CachedObjectStorageFactory::cache_to_memcache

舉例:excel

第4種方式:code

代碼以下:
$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_phpTemp; 
$cacheSettings = array( ' memoryCacheSize '  => '8MB' 
                ); 
PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);

第5種:orm

代碼以下:
$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來導出數據,上面方法簡單給了個流程,具體你本身補充!

相關文章
相關標籤/搜索