(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::getHandle — 取得 Vtiful\Kernel\Excel 的控制代碼
取得 xlsx 文字資源的控制代碼。
此函式沒有參數。
資源
範例 #1 範例
<?php
$config = [
'path' => './tests'
];
$fileObject = new \Vtiful\Kernel\Excel($config);
$file = $fileObject->fileName('tutorial.xlsx', 'sheet_one')
->header(['name', 'age']);
$handle = $file->getHandle();
?>