yrizos/csv

Simple library to work with CSV files.

Installs: 98

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/yrizos/csv

1.1.0 2014-09-30 06:47 UTC

This package is auto-updated.

Last update: 2025-09-24 01:39:46 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");