新手在这里,这是问题:
PhpSpreadSheet是否具有从PHP数组自动生成.xlsx
文件的功能?
我搜索了但找不到。
到目前为止,我只发现了setCellValue()
函数(显然)使我可以设置单元格的值。
我想设置很多单元格的值,所以除非有一个函数可以使用for循环来做到这一点。
如果确实存在,我认为它应该看起来像这样:
$cell = [Number of the first excel cell you want to write (e.g : 'B2')]
$path = [Path of the file you want to write (e.g : 'php://output')]
$mysheet->arrayToXlsx($cell, $path)
接下来的几天我将多次使用此功能,因此请让我知道PhpSpreadSheets是否已提供此功能!