Go to file
Sergey Shuchkin a9b00fcab7 Initial release 2020-05-20 02:46:52 +06:00
src Initial release 2020-05-20 02:46:52 +06:00
.gitignore Initial release 2020-05-20 02:46:52 +06:00
README.md Initial release 2020-05-20 02:46:52 +06:00
books.png Initial release 2020-05-20 02:46:52 +06:00
composer.json Initial release 2020-05-20 02:46:52 +06:00
composer.lock Initial release 2020-05-20 02:46:52 +06:00
datatypes.png Initial release 2020-05-20 02:46:52 +06:00
license.md Initial release 2020-05-20 02:46:52 +06:00

README.md

SimpleXLSXGen class 0.9.10 (Official)

Export data to Excel XLSX file. PHP XLSX generator. No external tools and libraries.
(!) XLSX reader here.

Sergey Shuchkin sergey.shuchkin@gmail.com 2020

Hey, bro, please ★ the package for my motivation :)

Basic Usage

$books = [
    ['ISBN', 'title', 'author', 'publisher', 'ctry' ],
    [618260307, 'The Hobbit', 'J. R. R. Tolkien', 'Houghton Mifflin', 'USA'],
    [908606664, 'Slinky Malinki', 'Lynley Dodd', 'Mallinson Rendel', 'NZ']
];
$xlsx = SimpleXLSXGen::fromArray( $books );
$xlsx->saveAs('books.xlsx');

XLSX screenshot

// SimpleXLSXGen::download() or SimpleXSLSXGen::downloadAs('table.xlsx');

Installation

The recommended way to install this library is through Composer. New to Composer?

This will install the latest supported version:

$ composer require shuchkin/simplexlsxgen

or download class here

Examples

Data types

$data = [
    ['Integer', 123],
    ['Float', 12.35],
    ['Procent', '12%'],
    ['Date','2020-05-20'],
    ['Datetime', '2020-05-20 02:38:00'],
    ['String', 'See SimpleXLSXGen column autosize feature']
];
SimpleXLSXGen::fromArray( $data )->saveAs('datatypes.xlsx');

XLSX screenshot

History

v0.9.10 (2020-05-20) initial relese