gpt4 book ai didi

php - 使用 PHPExcel 将大文件导出到 excel

转载 作者:可可西里 更新时间:2023-10-31 23:40:12 24 4
gpt4 key购买 nike

我正在尝试使用 PHPExcel 库在 PHP(Laravel4) 中导出大约 40,000 行 Mysql 数据。下面是我的代码:

($patList 是结果列的数组)

set_time_limit ( 3000 );

$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_phpTemp;

$cacheSettings = array( 'memoryCacheSize' => -1);

PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);

$objPHPExcel = new PHPExcel();
$i = 1;
$patList = $result[0];

for ($r = 0; $r < count($patList); $r++) {

$objPHPExcel->setActiveSheetIndex(0)

->setCellValue("A$i", $patList[$r][0])
->setCellValue("B$i", $patList[$r][1])
->setCellValue("C$i", $patList[$r][2])
->setCellValue("D$i", $patList[$r][1])
->setCellValue("E$i", $patList[$r][2])
->setCellValue("F$i", $patList[$r][1])
->setCellValue("G$i", $patList[$r][2])
->setCellValue("H$i", $patList[$r][2])
->setCellValue("I$i", $patList[$r][1])
->setCellValue("J$i", $patList[$r][2])
->setCellValue("K$i", $patList[$r][5]);
$i++;
}

$objPHPExcel->getActiveSheet()->setTitle('Name of Sheet 1');

header('Content-Type: application/vnd.ms-excel');

header('Content-Disposition: attachment;filename="result.xls"');

header('Cache-Control: max-age=0');

ob_clean();

flush();

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');

$objWriter->save('php://output');

如果 excel 中有 3-4 列和 15,000 行,以上代码运行良好。但是,如果我增加编号。行到 30,000 或没有。列数到 10,不会生成 excel。

最佳答案

$cacheSettings = array( 'memoryCacheSize' => -1);

不明智....我什至不知道使用值 -1 是否有效;但如果是这样,则意味着您将所有内容都存储在内存中,而 php://temp 中没有任何内容

memoryCacheSize 值告诉缓存流在将数据切换到 php://temp 之前应该在内存中存储多少数据;所以

$cacheSettings = array( 'memoryCacheSize' => '8MB');

会告诉缓存流使用 8MB 的内存,然后如果需要存储额外的数据则使用 php://temp 代替

关于php - 使用 PHPExcel 将大文件导出到 excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26545538/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com