bolstad/csv-writer

Simple system for writing an array to CSV row by row

Installs: 2 255

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/bolstad/csv-writer

0.2 2016-12-05 12:45 UTC

This package is not auto-updated.

Last update: 2025-09-27 21:20:54 UTC


README

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);