定义名称
函数原型
getDefinedNames(): ?array返回值
示例
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$names = $excel->openFile('source.xlsx')
->getDefinedNames();
print_r($names);
// Array
// (
// [0] => Array
// (
// [name] => TaxRate
// [formula] => Sheet1!$A$1
// [scope] =>
// [hidden] => false
// )
// )Last updated