PHPExcel中是否有将PHP数组直接写入行的方法?
我知道我需要写一个循环,我在其中使用;但是PHPExcel中是否有一种方法只接受单个数组并将其写入Excel工作表行?SetCellValue('cell_name', 'value')
像这样:
$testArray = array('testcelltext1', 'testcelltext2', testcelltext3'); PHPExcel::writeArraytoRow($testArray); //do the other PHPExcel stuff to actually write the file . . . // outputs an excel file in which the PHP array was written to the first row
我无法在包含的文档中找到类似的东西,但这可能只是糟糕的PDF搜索技能......