Php Box / Spout格式单元格到货币和设置宽度

时间:2018-06-18 22:10:16

标签: php

查看Box / Spout的文档后,我没有看到格式化货币单元格的方法。

注意:PhpExcel和PhpSpreadsheet不是一个选项。

有没有办法格式化单元格?

造型时,有没有办法设置单元格的宽度?

到目前为止,这是我的代码 它有效,但缺乏货币格式和宽度:

$writer = WriterFactory::create(Type::XLSX); // for XLSX files
$writer->openToFile($tmpfile); // write data to a file or to a PHP stream
$writer_sheet = $writer->getCurrentSheet();

$writer_sheet->setName($invoiceSheetName);
$headerStyle = (new StyleBuilder())
  ->setFontBold()
  ->setFontUnderline()
  ->build();

// add header with style
$writer->addRowWithStyle($header, $headerStyle);

$writer->addRows($resultsArray); // add multiple rows at a time
$writer->close();
$excelOutput = file_get_contents($tmpfile);

文档: Spout Documentation

非常感谢帮助。

1 个答案:

答案 0 :(得分:0)

决定通过解压缩xlsx文件并修改正确的xml文件来实现我自己的实现。