An open API service indexing awesome lists of open source software.

https://github.com/tredmann/easy-phpexcel

It's a simple wrapper to support easy Excel document creation with PHPExcel
https://github.com/tredmann/easy-phpexcel

Last synced: 10 months ago
JSON representation

It's a simple wrapper to support easy Excel document creation with PHPExcel

Awesome Lists containing this project

README

          

# easy-phpexcel
It's a simple wrapper to support easy Excel document creation with PHPExcel

## Usage

The following minimal example will create an Excel file.

$data = array(
'Name' => 'Redmann',
'Sex' => 'male'
);

$excel = new EasyPHPExcel('My first Excel');

$excel->setHeader(array_keys($data))
->addRow(array_values($data))
->save('example1.xlsx');

That's it. Really! It's that simple.