yrizos/csv

Simple library to work with CSV files.

1.1.0 2014-09-30 06:47 UTC

This package is auto-updated.

Last update: 2024-04-23 22:47:56 UTC


README

Simple library to work with CSV files.

Usage

$csv = new \Csv\Csv("path/to/your.csv");

foreach($csv as $row) print_r($row);

$csv->setColumnDelimiter("\t");
$csv->save("path/to/your.tsv");