1. <legend id='2OMNw'><style id='2OMNw'><dir id='2OMNw'><q id='2OMNw'></q></dir></style></legend>

      <small id='2OMNw'></small><noframes id='2OMNw'>

        <tfoot id='2OMNw'></tfoot>
          <bdo id='2OMNw'></bdo><ul id='2OMNw'></ul>
        <i id='2OMNw'><tr id='2OMNw'><dt id='2OMNw'><q id='2OMNw'><span id='2OMNw'><b id='2OMNw'><form id='2OMNw'><ins id='2OMNw'></ins><ul id='2OMNw'></ul><sub id='2OMNw'></sub></form><legend id='2OMNw'></legend><bdo id='2OMNw'><pre id='2OMNw'><center id='2OMNw'></center></pre></bdo></b><th id='2OMNw'></th></span></q></dt></tr></i><div id='2OMNw'><tfoot id='2OMNw'></tfoot><dl id='2OMNw'><fieldset id='2OMNw'></fieldset></dl></div>

        使用PhpOffice\PhpSpreadsheet 实现Excel多sheet导出代码

        使用PhpOffice\PhpSpreadsheet 实现Excel多sheet导出代码,具体代码如下: /** * 多sheet的导出 * @author bwy xxx@xxx.com * @param [type] $data_array * @return void */ public function xtexport($data_array) { $name = '团长' . date("Y-m-d", time())
      1. <legend id='LGnYn'><style id='LGnYn'><dir id='LGnYn'><q id='LGnYn'></q></dir></style></legend>
            <tbody id='LGnYn'></tbody>

          <i id='LGnYn'><tr id='LGnYn'><dt id='LGnYn'><q id='LGnYn'><span id='LGnYn'><b id='LGnYn'><form id='LGnYn'><ins id='LGnYn'></ins><ul id='LGnYn'></ul><sub id='LGnYn'></sub></form><legend id='LGnYn'></legend><bdo id='LGnYn'><pre id='LGnYn'><center id='LGnYn'></center></pre></bdo></b><th id='LGnYn'></th></span></q></dt></tr></i><div id='LGnYn'><tfoot id='LGnYn'></tfoot><dl id='LGnYn'><fieldset id='LGnYn'></fieldset></dl></div>

                • <bdo id='LGnYn'></bdo><ul id='LGnYn'></ul>

                  <small id='LGnYn'></small><noframes id='LGnYn'>

                  <tfoot id='LGnYn'></tfoot>
                  使用PhpOffice\PhpSpreadsheet 实现Excel多sheet导出代码,具体代码如下:

                  
                  require "vendor/autoload.php";
                  use PhpOffice\PhpSpreadsheet\Spreadsheet;
                  use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
                  use PhpOffice\PhpSpreadsheet\Reader\Xlsx as ReaderXlsx;
                  use PhpOffice\PhpSpreadsheet\IOFactory;
                  
                    /**
                       * 多sheet的导出
                       * @author bwy <xxx@xxx.com>
                       * @param [type] $data_array
                       * @return void
                       */
                      public  function xtexport($data_array)
                      { 
                          $name = '团长' . date("Y-m-d", time());
                          $spreadsheet = new Spreadsheet();
                          foreach ($data_array as $key => $data) {
                              $this->opSheet($spreadsheet,$key,$data);
                          }
                          header('Content-Type: application/vnd.ms-excel');
                          header('Content-Disposition: attachment;filename="' . $name . '.xlsx"');
                          header('Cache-Control: max-age=0');
                          $writer = new Xlsx($spreadsheet);
                          $writer->save('php://output');
                          //删除清空:
                          $spreadsheet->disconnectWorksheets();
                          unset($spreadsheet);
                          exit;
                      }
                  
                  
                  
                  /**
                       * 处理多sheet
                       * @author bwy <xxx@xxx.com>
                       * @param [type] $spreadsheet
                       * @param [type] $n
                       * @param [type] $data
                       * @return void
                       */
                      public  function opSheet($spreadsheet,$n, $data)
                      {
                          $spreadsheet->createSheet();//创建sheet
                          $objActSheet = $spreadsheet->setActiveSheetIndex($n);//设置当前的活动sheet
                          $keys = $data['rows'][0];//这是你的数据键名
                          $count = count($keys);//计算你所占的列数
                          $infoNum = ceil(count($data['info']) / 2);//求k-v值的所占行数
                          $infoStart = $infoNum + 2 ;//下面的详细信息的开始行数
                          $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');
                          $sheet = $spreadsheet->getActiveSheet($n)->setTitle($data['info']['社区团长姓名:']);//设置sheet的名称
                          $spreadsheet->getActiveSheet($n)->mergeCells('A1:' . $cellName[$count - 1] . '1'); //合并单元格
                          $spreadsheet->getActiveSheet($n)->getStyle('A1')->getFont()->setSize(20); //设置title的字体大小
                          $spreadsheet->getActiveSheet($n)->getStyle('A1')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('A')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('B')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('C')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('D')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('E')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('F')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle('G')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle("$infoStart")->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //居中
                          $spreadsheet->getActiveSheet($n)->getStyle("$infoStart")->getFont()->setBold(true); //标题栏加粗
                          $objActSheet->setCellValue('A1', $data['title']); //设置每个sheet中的名称title
                  
                  
                          /**
                           * 图中最下面的数据信息循环
                           */
                          foreach ($data['rows'] as $key => $item) 
                          {             
                              //循环设置单元格:
                              //$key+$infoStart,因为第一行是表头,所以写到表格时   从第数据行开始写 
                              for ($i = 65; $i < $count + 65; $i++) 
                              {   
                                  //数字转字母从65开始:
                                  //$sheet->setCellValue(strtoupper(chr($i)) . ($key + "$infoStart"), $item[[$keys][$i - 65]]);
                                  $sheet->setCellValue(strtoupper(chr($i)) . ($key+"$infoStart"), $item[$i - 65]);
                                  $spreadsheet->getActiveSheet($n)->getColumnDimension(strtoupper(chr($i)))->setWidth(20); //固定列宽
                              }
                          }
                  
                          /**
                           * 处理图中的中间区 团长名称之类的 
                           */
                          $rowNumber = 1;
                          $infoIndex = 0;
                          foreach ($data['info'] as $key => $value) {
                              if ($infoIndex % 2 == 0) {
                                  $rowNumber++;
                                  $infoCellName1 = 'A' . $rowNumber;
                                  $infoCellMegreRange = 'B' . $rowNumber . ':C' . $rowNumber;
                                  $infoCellName2 = 'B' . $rowNumber;
                              } else {
                                  $infoCellName1 = 'D' . $rowNumber;
                                  $infoCellMegreRange = 'E' . $rowNumber . ':F' . $rowNumber;
                                  $infoCellName2 = 'E' . $rowNumber;
                              }
                              $spreadsheet->setActiveSheetIndex($n)->setCellValue($infoCellName1, $key);
                              $spreadsheet->getActiveSheet($n)->mergeCells($infoCellMegreRange);
                              $spreadsheet->setActiveSheetIndex($n)->setCellValue($infoCellName2, $value);
                              $infoIndex++;
                          }
                      }
                  
                  public function xtexport()
                      {
                          $data = array(
                              array(
                                  'title' => 'AAA',
                                  'info' => [
                                      '社区团长店铺地址:' => 'AAA',
                                      '社区团长姓名:' => 'AAA',
                                      '收货地址:' => 'AAA',
                                      '联系方式:' => 'AAA',
                                      '配送日期:' => 'AAA',
                                      '手打阿达:' => 'AAA',
                                      '手动蝶阀:' => 'AAA'
                                  ],
                                  'rows' => [
                                      [
                                          'id',
                                          'name',
                                          'sex',
                                          'phone',
                                          'res',
                                          'aaa',
                                          'bbb'
                                      ],
                                      [
                                          1111,2222,3333,4444,5555,6666,7777
                                      ],
                                      [
                                          111,222,333,444,555,666,777
                                      ]
                                  ]
                              ), array(
                                  'title' => 'BBBB',
                                  'info' => [
                                      '社区团长店铺地址:' => 'BBBB',
                                      '社区团长姓名:' => 'BBBB',
                                      '收货地址:' => 'BBBB',
                                      '联系方式:' => 'BBBB',
                                      '配送日期:' => 'BBBB',
                                      '手打阿达:' => 'BBBB',
                                      '手动蝶阀:' => 'BBBB'
                                  ],
                                  'rows' => [
                                      [
                                          'id',
                                          'name',
                                          'sex',
                                          'phone',
                                          'res',
                                          'aaa',
                                          'bbb'
                                      ],
                                      [
                                          1,2,3,4,5,6,7
                                      ],
                                      [
                                          11,22,33,44,55,66,77
                                      ]
                                  ]
                              )
                          );
                          model('Excel')->xtexport($data);
                      }
                  
                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  PHP对Excel导入导出操作 最近公司要做报表功能,各种财务报表、工资报表、考勤报表等,于是特地封装适用各大场景的导入导出操作,希望大神支出不足之处。 phpspreadsheet 引入 由于PHPExcel早就停止更新维护,所以适用phpspreadsheet。不知道如何通过composer
                  使用MySQL和PHP创建嵌套JSON可以通过以下步骤实现: 创建MySQL数据库表格:首先,在MySQL数据库中创建一个表格,用于存储数据。表格的结构可以根据需要进行设计,但至少应包含一个用于存储JSON数据的列。 插入数据:使用INSERT语句将数据插入到表格中。在插
                  本文实例讲述了php使用preg_match()函数验证ip地址的方法。分享给大家供大家参考,具体如下: ?php /* *@return Boolen *@param String $ip 要匹配的ip地址 *@param String $pat 匹配的正则规则 *@param Boolen 匹配成功后返回的布尔值 *preg_match() *0为不

                  <legend id='q1iGP'><style id='q1iGP'><dir id='q1iGP'><q id='q1iGP'></q></dir></style></legend>
                  <tfoot id='q1iGP'></tfoot>
                  • <small id='q1iGP'></small><noframes id='q1iGP'>

                      <tbody id='q1iGP'></tbody>
                    <i id='q1iGP'><tr id='q1iGP'><dt id='q1iGP'><q id='q1iGP'><span id='q1iGP'><b id='q1iGP'><form id='q1iGP'><ins id='q1iGP'></ins><ul id='q1iGP'></ul><sub id='q1iGP'></sub></form><legend id='q1iGP'></legend><bdo id='q1iGP'><pre id='q1iGP'><center id='q1iGP'></center></pre></bdo></b><th id='q1iGP'></th></span></q></dt></tr></i><div id='q1iGP'><tfoot id='q1iGP'></tfoot><dl id='q1iGP'><fieldset id='q1iGP'></fieldset></dl></div>

                        <bdo id='q1iGP'></bdo><ul id='q1iGP'></ul>