PHPverse 2025

Vtiful\Kernel\Excel::getHandle

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::getHandleVtiful\Kernel\Excel getHandle

Descrição

public Vtiful\Kernel\Excel::getHandle()

Obtém o identificador de recurso de texto xlsx.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Recurso

Exemplos

Exemplo #1 Exemplo

<?php
$config
= [
'path' => './tests'
];

$fileObject = new \Vtiful\Kernel\Excel($config);

$file = $fileObject->fileName('tutorial.xlsx', 'sheet_one')
->
header(['name', 'age']);

$handle = $file->getHandle();
?>
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top