Codeigniter 将单元格与 phpspreadsheet 合并

时间:2021-04-14 06:28:03

标签: php codeigniter phpspreadsheet

如何在 codeigniter 中合并具有相同值的单元格/行?

我正在使用 phpspreadsheet

foreach($excel as $index => $row)
            {
                    $sheet->setCellValue('A'.$x, $no++);
                    $sheet->setCellValue('B'.$x, $row->data1);
                    $sheet->setCellValue('C'.$x, $row->data2);
                    $sheet->setCellValue('D'.$x, $row->data3);
                    
                    // $sheet->mergeCells("$??:$??");
                    $x++;
                    
            }

我不知道如何获得具有相同值的第一行和最后一行以在 codeigniter 中合并。

data example

0 个答案:

没有答案