欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

phpExcel导出大量数据出现内存溢出错误的解决方法

程序员文章站 2023-09-08 11:09:50
phpexcel将读取的单元格信息保存在内存中,我们可以通过 复制代码 代码如下: phpexcel_settings::setcachestoragemethod()...

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来导出数据,上面方法简单给了个流程,具体你自己补充!