截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ExportExcelServer.php 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use app\common\cache\ExportCache;
  21. use PhpOffice\PhpSpreadsheet\IOFactory;
  22. use PhpOffice\PhpSpreadsheet\Spreadsheet;
  23. use PhpOffice\PhpSpreadsheet\Style\Border;
  24. use PhpOffice\PhpSpreadsheet\Style\Fill;
  25. /**
  26. * 导出Excel
  27. * Class ExportExcelServer
  28. * @package app\common\lists
  29. */
  30. class ExportExcelServer
  31. {
  32. protected $fileName = ''; //文件名称
  33. protected $exportNumber = ['order_sn', 'sn']; // 导出中的数字
  34. /**
  35. * @notes 创建Excel
  36. * @param $excelFields
  37. * @param $lists
  38. * @return string
  39. * @throws \PhpOffice\PhpSpreadsheet\Exception
  40. * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
  41. * @author 段誉
  42. * @date 2022/4/24 9:58
  43. */
  44. public function createExcel($excelFields, $lists)
  45. {
  46. if (empty($lists)) {
  47. throw new \Exception('暂无导出数据!');
  48. }
  49. $title = array_values($excelFields);
  50. // 组装导出信息
  51. $data = [];
  52. foreach ($lists as $row) {
  53. $temp = [];
  54. foreach ($excelFields as $key => $excelField) {
  55. $temp[$key] = $row[$key];
  56. }
  57. $data[] = $temp;
  58. }
  59. $spreadsheet = new Spreadsheet();
  60. $sheet = $spreadsheet->getActiveSheet();
  61. //设置单元格内容
  62. foreach ($title as $key => $value) {
  63. // 单元格内容写入
  64. $sheet->setCellValueByColumnAndRow($key + 1, 1, $value);
  65. }
  66. $row = 2; //从第二行开始
  67. foreach ($data as $item) {
  68. $column = 1;
  69. foreach ($item as $k => $value) {
  70. if (in_array($k, $this->exportNumber)) {
  71. $value = "\t" . $value . "\t";
  72. }
  73. //单元格内容写入
  74. $sheet->setCellValueByColumnAndRow($column, $row, $value);
  75. $column++;
  76. }
  77. $row++;
  78. }
  79. $getHighestRowAndColumn = $sheet->getHighestRowAndColumn();
  80. $HighestRow = $getHighestRowAndColumn['row'];
  81. $column = $getHighestRowAndColumn['column'];
  82. $titleScope = 'A1:' . $column . '1';//第一(标题)范围(例:A1:D1)
  83. $sheet->getStyle($titleScope)
  84. ->getFill()
  85. ->setFillType(Fill::FILL_SOLID) // 设置填充样式
  86. ->getStartColor()
  87. ->setARGB('00B0F0');
  88. // 设置文字颜色为白色
  89. $sheet->getStyle($titleScope)->getFont()->getColor()
  90. ->setARGB('FFFFFF');
  91. // $sheet->getStyle('B2')->getNumberFormat()->setFormatCode(NumberFormat::FORMAT_DATE_YYYYMMDD);
  92. $spreadsheet->getActiveSheet()->getColumnDimension('B')->setAutoSize(true);
  93. $allCope = 'A1:' . $column . $HighestRow;//整个表格范围(例:A1:D5)
  94. $sheet->getStyle($allCope)->getBorders()->getAllBorders()->setBorderStyle(Border::BORDER_THIN);
  95. $writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
  96. //创建excel文件
  97. $exportCache = new ExportCache();
  98. $src = $exportCache->getSrc();
  99. if (!file_exists($src)) {
  100. mkdir($src, 0775, true);
  101. }
  102. $fileName = $this->getFileName();
  103. // 生成文件路径
  104. $writer->save($src . $fileName);
  105. //设置本地excel返回下载地址
  106. $vars = ['file' => $exportCache->setFile($fileName)];
  107. return (string)url("index/download/export", $vars, false, true);
  108. }
  109. /**
  110. * @notes 设置导出文件名称
  111. * @param $fileName
  112. * @return string
  113. * @author 段誉
  114. * @date 2022/4/24 10:02
  115. */
  116. public function setFileName($fileName)
  117. {
  118. return $this->fileName = $fileName . '-' . date('Y-m-d-His') . '.xlsx';
  119. }
  120. /**
  121. * @notes 获取导出文件名
  122. * @return string
  123. * @author 段誉
  124. * @date 2022/4/24 10:03
  125. */
  126. public function getFileName()
  127. {
  128. if (empty($this->fileName)) {
  129. return date('Y-m-d-His') . '.xlsx';
  130. }
  131. return $this->fileName;
  132. }
  133. /**
  134. * @notes 设置导出列表中的数字
  135. * @param null $params
  136. * @return bool
  137. * @author 段誉
  138. * @date 2022/4/24 9:42
  139. */
  140. public function setExportNumber($params = null): bool
  141. {
  142. if (is_null($params)) {
  143. return false;
  144. }
  145. $params = is_array($params) ? $params : [$params];
  146. foreach ($params as $item) {
  147. if (in_array($item, $this->exportNumber)) {
  148. continue;
  149. }
  150. array_push($this->exportNumber, $item);
  151. }
  152. return true;
  153. }
  154. }