Documentación offline PHP master

Vtiful\Kernel\Excel::autoFilter

master Ver versión oficial en línea Licencia CC-BY-3.0Descargado el 2026-08-02

En esta página

Vtiful\Kernel\Excel::autoFilter

Vtiful\Kernel\Excel autoFilter

Descripción#

public Vtiful\Kernel\Excel::autoFilter(string $scope)
```php

Añade el autofiltro a una hoja de trabajo.

## Parámetros

`scope`  
Celda de inicio y final de la cadena de coordenadas.

## Valores devueltos

instancia `Vtiful\Kernel\Excel`

## Ejemplos

ejemplo
'./tests' ]; $fileObject = new \Vtiful\Kernel\Excel($config); $file = $fileObject->fileName('test.xlsx') ->header(['name', 'age']) ->data($data) ->autoFilter('A1:B11') // auto filter ->output(); ?>

```php