即使使用单元缓存,PHPExcel内存仍然耗尽 - 其他解决方案

时间:2013-05-21 10:07:37

标签: php caching memory phpexcel

<b>Fatal error</b>:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 78 bytes) in <b>/var/www/leanne/api/classes/PHPExcel/CachedObjectStorage/PHPTemp.php</b> on line <b>66</b><br />

嗨,

我几天前问this question,建议更改我的代码并使用单元格缓存。虽然我已经更改了我的代码并尝试使用单元格缓存,但我仍然遇到内存错误。我迫切希望找到解决方案。

任何人都可以建议哪种缓存方法最适合编写1到100,000行数据的excel文件?如果单元格缓存不起作用,我可能需要使用另一种解决方案,允许我以与CSV版本相同的方式附加到xls文件。

我当前代码的示例如下:

if ($count_prods > 0) {

    $format = strtolower($export_data['output']);
    $temp_file_location = '../temp/exports/products/';
    $filename = 'data_' + $shop->ID . '_' . $export_id . '_test';
    $separator = ',';
    $endrow = "\n";

    $fh = fopen($temp_file_location . $filename . '.csv', 'a');

    /*$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_phpTemp;
    $cacheSettings = array( ' memoryCacheSize ' => '8MB');
    PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);*/

    $cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_sqlite;
    PHPExcel_Settings::setCacheStorageMethod($cacheMethod);

    $objPHPExcel = new PHPExcel();

    $rowID = 2;
    $counter = 1;
    for ($i = 0; $i < $count_prods; $i += $batchlimit) {
        $csv = '';
        $limit = $batchlimit * $counter;
        $start = $i + 1;
        $productData = $productExport->getProductData($start, $limit);

        if ($counter == 1) {
            //get column names
            if ($format == 'csv') {
                $column_titles = implode(',', $productExport->product_fields);
                $column_no = count($column_titles);
                $csv = $column_titles . $endrow;
            } else {
                $objPHPExcel->getActiveSheet()->fromArray($productExport->product_fields, NULL, 'A1');
            }
        }

        //loop through data export array
        foreach ($productData as $product_id => $product_details) {
            $columnID = 'A';
            foreach ($product_details as $key => $value) {
                if ($format == 'csv') {
                    $csv .= '"' . str_replace('"', '\'', $product_details[$key]) . '"' . $separator;
                } else {
                    $objPHPExcel->getActiveSheet()->setCellValue($columnID . $rowID, $product_details[$key]);
                }
                $columnID++;
            }
            if ($format == 'csv') {
                $csv = rtrim($csv, $separator);
                $csv .= $endrow;
            }
            $rowID++;
        }
        if ($format == 'csv') {
            fwrite($fh, $csv);
            $csv = '';
        }

        $counter++;
    }
    if ($format == 'csv') {
        fclose($fh);
    }

    //if  XLS file 
    if ($format == 'xls') {
        //$objPHPExcel = $objReader->load($temp_file_location . $filename . '.csv');
        // $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
        //$objWriter->save($temp_file_location . $filename . '.xls');
        $objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel);
        $objWriter->save($temp_file_location . $filename . '.xlsx');
    }

2 个答案:

答案 0 :(得分:1)

您可以使用以下方法增加分配给脚本的内存和时间:

ini_set(&#39; memory_limit&#39;,&#39; 2048M&#39;);         参数或者set_time_limit(&#39; 1200&#39);

答案 1 :(得分:1)

PHPExcel是一个优秀的图书馆,我只是喜欢它。但是,为了支持所有这些Excel功能,它会占用大量内存。

你正在做简单的阅读和写作,没有任何高级的Excel东西。

尝试一下Spout。 https://github.com/box/spout

从主要说明: Spout是一个PHP库,可以快速,可扩展的方式读写电子表格文件(CSV,XLSX和ODS)。与其他文件读取器或编写器相反,它能够处理非常大的文件,同时保持内存使用率非常低(小于3MB)。

对于从excel导出或导入,它至少快10倍并且占用的内存非常少,因为它是与文件进行数据流传输

我已成功将PHPExcel替换为一些非常大的Excel文件,我只需要导出数据。