PHP code example of prezent / excel-exporter
1. Go to this page and download the library: Download prezent/excel-exporter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
prezent / excel-exporter example snippets
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);
bash
$ php composer.phar