Get auto filter
Last updated
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$af = $excel->openFile('source.xlsx')
->openSheet()
->getAutoFilter();
var_export($af);
// array (
// 'range' => 'A1:C100',
// 'columns' => array (
// 0 => array ( 'col_id' => 0, 'type' => 'list', 'values' => array ('apple','pear') ),
// ),
// )