2017 © Pedro PelĂĄez
 

library amp-csv

CSV library to use with Amp PHP framework.

image

webgriffe/amp-csv

CSV library to use with Amp PHP framework.

  • Thursday, March 15, 2018
  • by mmenozzi
  • Repository
  • 1 Watchers
  • 1 Stars
  • 20 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 900 % Grown

The README.md

AMP Comma Separated Values Library

Build Status, (*1)

CSV library to use with Amp PHP framework. Currently it implements only an iterator which allows to parse CSV rows one at a time., (*2)

Installation

Require this package using Composer:, (*3)

composer require webgriffe/amp-csv

Iterator Usage

This library implements an Amp's Iterator which allows to iterate over CSV rows one at a time. Potentially it can parse very large CSV files because only small chunks are kept in memory. See the following example, given this CSV file (path/to/file.csv):, (*4)

Name,Description,Price,Stock
RaspberryPi,"Raspberry PI Modell B, 512 MB",37.05,12
SanDisk Ultra SDHC,SanDisk Ultra SDHC 8 GB 30 MB/s Classe 10,6.92,54

We can have:, (*5)

<?php

use Webgriffe\AmpCsv\Iterator;
use Webgriffe\AmpCsv\Parser;
use Amp\File;

require_once 'vendor/autoload.php';

\Amp\Loop::run(function () {
    $iterator = new Iterator(new Parser(yield File\open('path/to/file.csv', 'rb')));
    while (yield $iterator->advance()) {
        $rows[] = $iterator->getCurrent();
    }
    var_dump($rows);
});

And the output will be:, (*6)

array(
    array(
        'Name' => 'RaspberryPi',
        'Description' => 'Raspberry PI Modell B, 512 MB',
        'Price' => 37.05,
        'Stock' => 12,
    ),
    array(
        'Name' => 'SanDisk Ultra SDHC',
        'Description' => 'SanDisk Ultra SDHC 8 GB 30 MB/s Classe 10',
        'Price' => 6.92,
        'Stock' => 54,
    ),
),

By default the iterator treats the first line as header and will use the column names to index row values. If a row has a different column number than header an exception will be thrown. If your CSV doesn't have an header as first line you can disable the header parsing by passing false as constructor's second argument:, (*7)

$iterator = new Iterator(new Parser(yield File\open('path/to/file.csv', 'rb')), false);

Contributing

To contribute simply fork this repository, do your changes and then propose a pull requests. You should run coding standards check and tests as well:, (*8)

vendor/bin/phpcs --standard=PSR2 src
vendor/bin/phpunit

License

This library is under the MIT license. See the complete license in the LICENSE file., (*9)

Credits

Developed by WebgriffeÂź. Thanks also to Niklas Keller for his help about converting ReactPHP stream events to an Amp's Iterator (see https://github.com/reactphp/promise-stream/issues/14)., (*10)

The Versions

15/03 2018

dev-master

9999999-dev

CSV library to use with Amp PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

15/03 2018

0.1.0

0.1.0.0

CSV library to use with Amp PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires