natanaugusto/easyspreadsheets

A easy way to handle spreadsheets with PHP

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/natanaugusto/easyspreadsheets

0.0.2 2018-07-25 00:53 UTC

This package is not auto-updated.

Last update: 2025-10-17 09:28:53 UTC


README

Total Downloads Latest Stable Version License Flying Donut

That's a easy way to use PhpSpreadsheet.

What you can do with this:

  • Load a spreadsheet very easily.
  • Read spreadsheets with header
  • Read cells colors
  • Read rows associated with their headers
  • Paint cells and texts
  • That's it for now

Install:

composer require natanaugusto/easyspreadsheets

Begins:

require_once('../vendor/autoload.php');

use EasySpreadsheets\Handler as EasySpreadsheet;
$file = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'example.xlsx';

$spread = new EasySpreadsheet;
$spread->load($file);

Load without header on spreadsheet:

$spread->load($file, false);

Get all rows:

$spread->getRows()

Get the current row:

$spread->getRow()

Get a especific row:

$spread->getRow(2)

(Yes, my English is a very bad shit)