2017-25 © Pedro Pelåez
 

library phpexcel

A lightweight PHP library for reading spreadsheet files

image

asan/phpexcel

A lightweight PHP library for reading spreadsheet files

  • Monday, July 23, 2018
  • by Janson-Leung
  • Repository
  • 3 Watchers
  • 15 Stars
  • 62 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 4 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

phpexcel

A lightweight PHP library for reading spreadsheet files - Based on Generator、SeekableIterator and Countable - Support for reading by line, read data only, (*1)

Requirements

  • PHP 7.0 or higher

Installation

composer require asan/phpexcel

Usage

csv

// Simple setting 
$reader = Asan\PHPExcel\Excel::load('files/02.csv', 'GBK');

// Flexible setting
$reader = Asan\PHPExcel\Excel::load('files/01.csv', function(Asan\PHPExcel\Reader\Csv $reader) {
    // Set row limit
    $reader->setRowLimit(10);

    // Set column limit
    $reader->setColumnLimit(10);

    // Ignore emoty row
    $reader->ignoreEmptyRow(true);

    // Set encoding
    //$reader->setInputEncoding('GBK');

    // Set delimiter
    $reader->setDelimiter("\t");
}, 'GBK');

// skip to row 50 
$reader->seek(50);

// Get the current row data
$current = $reader->current();

// Get row count
$count = $reader->count();

xls

$reader = Asan\PHPExcel\Excel::load('files/01.xls', function(Asan\PHPExcel\Reader\Xls $reader) {
    // Set row limit
    $reader->setRowLimit(10);

    // Set column limit
    $reader->setColumnLimit(10);

    // Ignore emoty row
    $reader->ignoreEmptyRow(true);

    // Select sheet index
    $reader->setSheetIndex(1);
});

// skip to row 50 
$reader->seek(50);

// Get the current row data
$current = $reader->current();

// Get row count
$count = $reader->count();

// Get all sheets info
$sheets = $reader->sheets();

xlsx

$reader = Asan\PHPExcel\Excel::load('files/01.xlsx', function(Asan\PHPExcel\Reader\Xlsx $reader) {
    // Set row limit
    $reader->setRowLimit(10);

    // Set column limit
    $reader->setColumnLimit(10);

    // Ignore emoty row
    $reader->ignoreEmptyRow(true);

    // Select sheet index
    $reader->setSheetIndex(0);
});

// skip to row 50 
$reader->seek(50);

// Get the current row data
$current = $reader->current();

// Get row count
$count = $reader->count();

// Get all sheets info
$sheets = $reader->sheets();

The Versions

23/07 2018

dev-master

9999999-dev https://github.com/Janson-Leung/PHPExcel

A lightweight PHP library for reading spreadsheet files

  Sources   Download

MIT

The Requires

  • php >=7.0

 

23/07 2018

v2.0.1

2.0.1.0 https://github.com/Janson-Leung/PHPExcel

A lightweight PHP library for reading spreadsheet files

  Sources   Download

MIT

The Requires

  • php >=7.0

 

29/06 2018

v2.0

2.0.0.0 https://github.com/Janson-Leung/PHPExcel

A lightweight PHP library for reading spreadsheet files

  Sources   Download

MIT

The Requires

  • php >=7.0

 

29/06 2018

2.0.x-dev

2.0.9999999.9999999-dev https://github.com/Janson-Leung/PHPExcel

A lightweight PHP library for reading spreadsheet files

  Sources   Download

MIT

The Requires

  • php >=7.0