Vtiful\Kernel\Excel::__construct

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::__constructVtiful\Kernel\Excel constructor

Description

publicVtiful\Kernel\Excel::__construct(array$config)

Vtiful\Kernel\Excel constructor, create a class object.

Parameters

config

XLSX file export configuration

Examples

Example #1 example

<?php
$config
= [
'path' => '/home/viest'
];

$excelObject = new \Vtiful\Kernel\Excel($config);
?>
To Top