2017 © Pedro Peláez
 

library csv-parser

A CSV parser for PHP

image

kothman/csv-parser

A CSV parser for PHP

  • Monday, July 18, 2016
  • by kothman
  • Repository
  • 1 Watchers
  • 0 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

CSVParser

Build Status Latest Stable Version Total Downloads, (*1)

A CSV Parser for PHP., (*2)

Install

Via Composer, (*3)

$ composer require kothman/csv-parser

Usage

$parser = new Kothman\CSVParser("file.csv");
while($row = $parser->row()) {
    echo implode(", ", $row);
}

$parser->rewind();
$parser->row();

$anotherParser = new Kothman\CSVParser("https://some.csv.file.csv", $delimeter = '.');
echo $anotherParser->toDictionary();
echo $anotherParser->countColumns();
echo $anotherParser->countRows();

Testing

$ composer test

The Versions

18/07 2016

dev-master

9999999-dev https://github.com/kothman/php-csv

A CSV parser for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

18/07 2016

1.0.1

1.0.1.0 https://github.com/kothman/php-csv

A CSV parser for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

18/07 2016

dev-develop

dev-develop https://github.com/kothman/php-csv

A CSV parser for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

18/07 2016

1.0.0

1.0.0.0 https://github.com/kothman/php-csv

A CSV parser for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires