Worksheet list with metadata
Methods
sheetListWithMeta(): ?arrayReturn value
Example
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$meta = $excel->openFile('source.xlsx')
->sheetListWithMeta();
print_r($meta);
// Array
// (
// [0] => Array ( [name] => Sheet1 [state] => visible )
// [1] => Array ( [name] => Hidden [state] => hidden )
// )Last updated