Documentación offline PHP master

Vtiful\Kernel\Excel::output

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

En esta página

Vtiful\Kernel\Excel::output

Vtiful\Kernel\Excel output

Descripción#

public Vtiful\Kernel\Excel::output()
```php

Salida del archivo xlsx al disco.

## Parámetros

Esta función no contiene ningún parámetro.

## Valores devueltos

Ruta de archivo XLSX;

## Ejemplos

ejemplo
'./tests' ]; $fileObject = new \Vtiful\Kernel\Excel($config); $file = $fileObject->fileName('tutorial.xlsx', 'sheet_one') ->header(['name', 'age']) ->data([ ['viest', 23], ['wjx', 23], ]); $path = $file->output(); ?>

```php