summaryrefslogtreecommitdiffstats
path: root/examples/bom_excel_win.php
blob: 062773b09249d50eed8e9c305b0cc84d7dd1320c (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

use League\Csv\Reader;

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

$csv = Reader::createFromPath(__DIR__.'/data/prenoms.csv');
$csv->setOutputBOM(Reader::BOM_UTF8);
//if the current BOM setting differs with
//the one supplied it will be automatically updated
$csv->output('test.csv');