定制 techone/php-excel 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

techone/php-excel

最新稳定版本:v0.2

Composer 安装命令:

composer require techone/php-excel

包简介

A pure PHP library for reading and writing spreadsheet files for ThinkPHP projects.

README 文档

README

一个基于PhpSpreadsheet的拓展包,简化了Excel的导出和导入。

安装

通过composer安装这个扩展:

composer require techone/php-excel

快速开始

创建一个导出类:

use TechOne\Excel\Concerns\FromArray;

class UsersExport implements FromArray
{
    public function array()
    {
        return [
        	[1, 2, 3], 
        	[1, 2, 3]
        ];
    }
}

可以这样调用:

Excel::download(new UsersExport(), 'data.xlsx');

协议

PHP-Excel采用 Apache 2.0 license 开源协议发布。

联系

有问题请提交 Issues:https://github.com/techoner/php-excel/issues

统计信息

  • 总下载量: 175
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2018-12-05