ninenight/export

整合常用excel导出,方便管理和调用

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ninenight/export

1.0.5 2020-04-08 10:52 UTC

This package is not auto-updated.

Last update: 2025-10-02 13:33:58 UTC


README

安装

composer require ninenight/export

example

 //导出excel
        use ninenight\export\Export;

        $excelobj = new Export();
        $type = 'xlswriter';    //xlswriter,excel,csv,browser
        $excelobj->export($type, $filename, $title, $data)->doExport();