程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> phpExcel導出大量數據出現內存溢出錯誤解決辦法

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

編輯:關於PHP編程

我們經常會使用phpExcel導入或導入xls文件,但是如果一次導出數據比較大就會出現內存溢出錯誤,下面我來總結解決辦法。

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來導出數據,上面方法簡單給了個流程,具體你自己補充!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved