chenmobuys/easyexcel

Easy excel library.

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/chenmobuys/easyexcel

1.0.0 2025-04-25 08:46 UTC

This package is auto-updated.

Last update: 2025-12-25 10:07:48 UTC


README

English · 中文

Read large spreadsheets using very low memory usage, supports formats CSV, ODS, XLS, XLSX.

Install

composer require chenmobuys/easyexcel

Usage

<?php

use EasyExcel\Factory;

$filename = 'Excel.xlsx';
$reader = Factory::createReaderForFile($filename);
$readerExcel = $reader->load($filename);
$activeSheet = $readerExcel->getActiveSheet();
foreach ($activeSheet->getRowIterator() as $row) {
    // Do something...
}

Features implemented

  • ✔ Supported
  • ● Partially supported
  • ✖ Not supported
  • N/A Cannot be supported
Feature Csv Ods Xls Xlsx
CellOriginalValue
CellFormattedValue N/A
CellFormulaValue N/A
CellStyle N/A
Hyperlinks N/A
MergeCells N/A