caherrera/fullcsv

FullCSV is a simple Object Oriented CSV manipulation library for PHP 5.6+

v2.0.0 2019-05-23 01:54 UTC

This package is auto-updated.

Last update: 2024-04-23 12:34:06 UTC


README

Read/Write CSV Files

Usage

Reader

<?php
$filename = 'test.csv';
$read     = new \FullCsv\Reader($filename);
?>

Writer

<?php
$filename = 'test.csv';
$writer   = new \FullCsv\Writer($filename);
?>