(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::addSheet — Vtiful\Kernel\Excel addSheet
Cria uma nova planilha no arquivo xlsx.
sheetNameNome da planilha.
Instância de Vtiful\Kernel\Excel.
Exemplo #1 Exemplo
<?php
$config = [
    'path' => './tests'
];
$fileObject  = new \Vtiful\Kernel\Excel($config);
$file = $fileObject->fileName('tutorial.xlsx', 'sheet_one')
    ->header(['name', 'age'])
    ->data([
        ['viest', 23],
        ['wjx', 23]
    ]);
$file->addSheet('sheet_two')
    ->header(['name', 'age'])
    ->data([
        ['james', 33],
        ['king', 33]
    ]);
$file->output();
?>