Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 728 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 728 Bytes

prezent/excel-exporter

A wrapper around PhpSpreadsheet, to allow for easy export of data to Excel files.

Installation

This extension can be installed using Composer. Tell composer to install the extension:

$ php composer.phar require prezent/excel-exporter

Quick example

<?php

use Prezent\ExcelExporter\Exporter;

$exporter = new Exporter($tempDir);

$data = ['foo', 'bar'];
$exporter->writeRow($data);

// generate the file
list($path, $filename) = $exporter->generateFile('export.xlsx');

// stream to browser
$exporter->outputFile($filename);

Documentation

The complete documentation can be found in the doc directory.