[PHP] generate Excel (.xlsx) with SimpleXLSX

Download SimpleXLSXGen.php

github :  https://github.com/shuchkin/simplexlsxgen

Code

test.php

<?php
require('SimpleXLSXGen.php');
$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->downloadAs('books.xlsx');

Excel File (.xlxs)