dershun/phpexcel-using

PHPExcel Using encapsulation

V1.0.0 2021-07-22 05:54 UTC

This package is not auto-updated.

Last update: 2024-05-15 00:02:29 UTC


README

介绍

PHPExcel 导出 Excel表格

适用于、Thinkphp

composer 安装

  1. composer require dershun/phpexcel-using

导出示例


$PhpExcel = new PhpExcelApply();

$excelConfig = [
    "file_name"   => "数据表格"
];

$excelHead = [
    "A1" => [
        "title"      => "数据日期",
        "width"      => 20,
        "height"     => 20,
        "horizontal" => "center",
        "vertical"   => "center",
    ],
];


$PhpExcel->setExportConfig($excelConfig)->setExportHead($excelHead)->exportExport($Data);