3
<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 />

你好,

几天前我问了这个问题,并被建议更改我的代码并使用单元缓存。虽然我更改了代码并尝试使用单元缓存,但仍然出现内存错误。我迫切希望找到解决方案。

谁能建议哪种缓存方法最适合编写 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');
    }
4

2 回答 2

2

PHPExcel 是一个优秀的库,我就是喜欢它。但是,要支持所有这些 Excel 功能,它会占用大量内存。

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

试试 Spout。https://github.com/box/spout

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

对于从 excel 导出或导入,它的速度至少快 10 倍,并且占用的内存非常少,因为它正在将数据流式传输到文件和从文件中导出

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

于 2016-08-14T12:35:11.020 回答
1

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

ini_set('memory_limit', '2048M'); set_time_limit('1200');

于 2013-05-21T10:18:22.993 回答