2017 © Pedro Peláez
 

library vsxlsx

A (very simple) XLSX parser

image

lazuli/vsxlsx

A (very simple) XLSX parser

  • Thursday, June 14, 2018
  • by lazuli
  • Repository
  • 1 Watchers
  • 6 Stars
  • 2,731 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 2 Versions
  • 5 % Grown

The README.md

VSXLSX

A (Very Simple) XLSX Parser, (*1)

Installation

Install with Composer., (*2)

{
    "require": {
        "lazuli/vsxlsx": "0.0.1"
    }
}

Usage

require 'vendor/autoload.php';

$parser = new VSXLSX\Parser($filename, /*sheet number */);

if ($parser->parse()) {
    // Returns an array
    $parsed = $parser->get_parsed();
    /* Do something with the parsed array */
} else {
    foreach($parser->get_errors() as $error) {
        echo "Error: $error\n";
    }
}

Column Names

With a header

By default, the parser assumes there is a 'header' row. The first row will be used to generate column titles. They will be lowercased and have whitespace replaced by underscores., (*3)

Assuming cell A1 is 'Product Name', the associated key in the resultant array from get_parsed() will be product_name., (*4)

The column titles can be overridden with an array passed to the header_names method before parsing. This array can use numeric or alphabetical indices, interchangeably., (*5)

    $column_names = array();

    // Any of these will override the first column's title
    $column_names[0] = 'product_title';
    $column_names['a'] = 'product_title';
    $column_names['A'] = 'product_title';

    // This will add a title for the 27th column (index 26)
    $column_names['aa'] = 'image_url';

    $parser->header_names($column_names);

Without a header

If the parser is missing the header row, use the has_header_row method with false before parsing., (*6)

    $parser->has_header_row(false);

API Docs

Available here., (*7)

License

MIT, (*8)

The Versions

14/06 2018

dev-master

9999999-dev

A (very simple) XLSX parser

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

spreadsheet xlsx

05/01 2013

v0.0.1

0.0.1.0

A (very simple) XLSX parser

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

spreadsheet xlsx