我现在在服务器上有一个excel(.xlsx)文件,我想编辑该文件并使用 PHP XLXSwrite 在其中添加一个新的空白表。
我的代码:
$hello = array(array());
$writer = new XLSXWriter();
$writer->writeSheetRow('hello', $hello);
$writer->writeToFile($filename);
此代码清空了我的文件,并在其中添加了新的空白表,但是我希望将现有数据和新表添加到更新文件中。