summaryrefslogtreecommitdiffstats
path: root/examples/download.php
blob: 1578b51ea055ca500495b49f3ddd14aa5eb24e60 (plain)
1
2
3
4
5
6
7
8
9
<?php

use League\Csv\Reader;

require '../vendor/autoload.php';

$inputCsv = new Reader('data/prenoms.csv');
$inputCsv->setEncoding('ISO-8859-15');
$inputCsv->output('firstname.csv'); //specifying a filename triggers header sending