如何合并盒子喷口写入excel文件中的单元格。 我已经尝试使用下面的代码进行单元合并
$customTempFolderPath = sys_get_temp_dir();
$writer = WriterFactory::create(Type::XLSX);
$writer->setTempFolder($customTempFolderPath)
->setShouldUseInlineStrings(true)
->openToFile($filePath)
->addRowWithStyle($header, $headerStyle)
->addRowWithStyle($headerRow, $headerRowStyle)
->addRowsWithStyle($dataRows, $defaultStyle)
->addRowWithStyle($lastRow, $headerRowStyle)
->close();