Export.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. namespace addons\shopro\library;
  3. use EasyWeChat\Factory;
  4. use PhpOffice\PhpSpreadsheet\Spreadsheet;
  5. use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
  6. use League\Flysystem\Adapter\Local;
  7. use League\Flysystem\Filesystem;
  8. use Cache\Adapter\Filesystem\FilesystemCachePool;
  9. use addons\shopro\library\Redis;
  10. /**
  11. *
  12. */
  13. class Export
  14. {
  15. public function __construct()
  16. {
  17. }
  18. public function exportExcel($expTitle, $expCellName, $expTableData, &$spreadsheet = null, &$sheet = null, $pages = [])
  19. {
  20. $page = $pages['page'] ?? 1;
  21. $page_size = $pages['page_size'] ?? 1000;
  22. $is_last_page = $pages['is_last_page'] ?? 1;
  23. $current_total = $pages['current_total'] ?? 0;
  24. if ($current_total) {
  25. // 每次传来的 expTableData 数据条数不等,比如订单导出
  26. $base_cell = $current_total - count($expTableData) + 2;
  27. }else {
  28. $base_cell = ($page - 1) * $page_size + 2;
  29. }
  30. $fileName = $expTitle;
  31. $cellNum = count($expCellName);
  32. $dataNum = count($expTableData);
  33. $cellName = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'AA', 'AB', 'AC', 'AD', 'AE', 'AF', 'AG', 'AH', 'AI', 'AJ', 'AK', 'AL', 'AM', 'AN', 'AO', 'AP', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AV', 'AW', 'AX', 'AY', 'AZ');
  34. if ($page == 1) {
  35. // 不限时
  36. set_time_limit(0);
  37. // 根据需要调大内存限制
  38. ini_set('memory_limit', '512M');
  39. $cache_type = 'redis';
  40. // 设置缓存
  41. if ($cache_type == 'redis' && class_exists(\Cache\Adapter\Redis\RedisCachePool::class)) {
  42. // 将表格数据暂存 redis,可以降低 php 进程内存占用,需要安装扩展包 composer require cache/simple-cache-bridge cache/redis-adapter
  43. $options = [
  44. // 'select' => 0 // 注释解开,并且换成一个空的 select 库,redis 库默认是 0-15 共 16 个库
  45. ];
  46. $redis = (new Redis($options))->getRedis();
  47. $pool = new \Cache\Adapter\Redis\RedisCachePool($redis);
  48. $simpleCache = new \Cache\Bridge\SimpleCache\SimpleCacheBridge($pool);
  49. \PhpOffice\PhpSpreadsheet\Settings::setCache($simpleCache);
  50. } else if ($cache_type == 'file' && class_exists(FilesystemCachePool::class)) {
  51. // 将数据暂存磁盘,可以降低内存,但是导出速度会大幅下降 需要安装扩展包 composer require cache/filesystem-adapter
  52. $path = ROOT_PATH . 'runtime' . DS . 'export/';
  53. @mkdir($path);
  54. $filesystemAdapter = new Local($path);
  55. $filesystem = new Filesystem($filesystemAdapter);
  56. $pool = new FilesystemCachePool($filesystem);
  57. \PhpOffice\PhpSpreadsheet\Settings::setCache($pool);
  58. }
  59. // 实例化excel
  60. $spreadsheet = new Spreadsheet();
  61. // 初始化工作簿
  62. $sheet = $spreadsheet->getActiveSheet(0);
  63. // 给表头设置边框
  64. $sheet->getStyle('A1:' . $cellName[$cellNum - 1] . '1')->getFont()->setBold(true);
  65. // 表头
  66. $i = 0;
  67. foreach ($expCellName as $key => $cell) {
  68. $sheet->setCellValue($cellName[$i] . '1', $cell);
  69. $i++;
  70. }
  71. }
  72. // for ($i = 0; $i < $cellNum; $i++) {
  73. // $sheet->getColumnDimension($cellName[$i])->setWidth(30);
  74. // }
  75. // 写入数据
  76. for ($i = 0; $i < $dataNum; $i++) {
  77. if ($is_last_page && $i == ($dataNum - 1)) {
  78. $sheet->mergeCells('A' . ($i + $base_cell) . ':' . $cellName[$cellNum - 1] . ($i + $base_cell));
  79. $sheet->setCellValue('A' . ($i + $base_cell), $expTableData[$i][key($expCellName)]);
  80. } else {
  81. $j = 0;
  82. foreach ($expCellName as $key => $cell) {
  83. $sheet->setCellValue($cellName[$j] . ($i + $base_cell), $expTableData[$i][$key]);
  84. $j++;
  85. }
  86. }
  87. }
  88. if ($is_last_page) {
  89. // ini_set('memory_limit', '256M');
  90. ob_end_clean();
  91. header('pragma:public');
  92. header('Content-type:application/vnd.ms-excel;charset=utf-8;name="' . $fileName . '.xlsx"');
  93. header("Content-Disposition:attachment;filename=$fileName.xlsx"); //attachment新窗口打印inline本窗口打印
  94. $writer = \PhpOffice\PhpSpreadsheet\IOFactory::createWriter($spreadsheet, 'Xlsx');
  95. $writer->save('php://output');
  96. }
  97. }
  98. }