盒子喷口两个相邻的细胞合并

时间:2017-07-04 20:31:47

标签: php xlsx

如何合并盒子喷口写入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();

0 个答案:

没有答案