Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 283 Bytes

File metadata and controls

14 lines (9 loc) · 283 Bytes

csvwriter

Simple system for writing an array to CSV row by row

date_default_timezone_set('Europe/Stockholm');

$ding = new CsvWriter\SimpleCsvWrite('out.csv','data/');
$demo = array('id'=>1,'name'=>'A nice name','city'=>'location');
$ding->writeCsv($demo);