XLSWriter Vtiful\Kernel\Excel::__construct

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::__construct — Vtiful\Kernel\Excel constructor


설명

public Vtiful\Kernel\Excel::__construct(array $config)

Vtiful\Kernel\Excel 생성자, 클래스 개체를 만듭니다.


매개변수

config
XLSX 파일 내보내기 구성

Examples

예제 #1 예제

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

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