glhd/linen

0.0.2 2024-08-02 14:18 UTC

This package is auto-updated.

Last update: 2024-09-04 13:16:27 UTC


README

Build Status Coverage Status Latest Stable Release MIT Licensed Follow @inxilpro on Twitter

Linen

Linen 是一个轻量级的 Laravel 电子表格工具。它是 openspout 的简单包装,提供了一些数据规范便利。

安装

composer require glhd/linen

使用方法

读取电子表格

foreach (Linen::read('path/to/your.xlsx') as $row) {
    // $row is a collection, keyed by the headers in snake_case
}

写入电子表格

// $data can be any iterable/Enumerable/etc
$path = Linen::write($data, 'path/to/your.xlsx');