如何在 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 中合并。