新增 excel 工具

This commit is contained in:
JaguarJack
2020-05-25 19:47:54 +08:00
parent c0e3726775
commit 2074c1f65d
4 changed files with 392 additions and 7 deletions

View File

@@ -1,14 +1,11 @@
<?php
namespace catcher\library\excel;
interface Excel
interface ExcelContract
{
public function title(): string;
public function headers(): array;
public function sheets(): array;
public function filename():string;
public function keys(): array ;
public function sheets();
}