2017 © Pedro Peláez
 

library csv

Multibyte-Text supported CSV reader and writer

image

whiteplus/csv

Multibyte-Text supported CSV reader and writer

  • Monday, December 22, 2014
  • by kai-zoa
  • Repository
  • 9 Watchers
  • 0 Stars
  • 222 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 30 Forks
  • 0 Open issues
  • 16 Versions
  • 35 % Grown

The README.md

Keboola CSV reader/writer Build Status

Latest Stable Version License Total Downloads, (*1)

Usage

Read CSV

$csvFile = new Whiteplus\Csv\CsvFile(__DIR__ . '/_data/test-input.csv');
foreach($csvFile as $row) {
    var_dump($row);
}

Write CSV

$csvFile = new Keboola\Csv\CsvFile(__DIR__ . '/_data/test-output.csv');
$rows = array(
    array(
        'col1', 'col2',
    ),
    array(
        'line without enclosure', 'second column',
    ),
);

foreach ($rows as $row) {
    $csvFile->writeRow($row);
}

Installation

Library is available as composer package. To start using composer in your project follow these steps:, (*2)

Install composer, (*3)

curl -s http://getcomposer.org/installer | php
mv ./composer.phar ~/bin/composer # or /usr/local/bin/composer

Create composer.json file in your project root folder:, (*4)

{
    "require": {
        "php" : ">=5.3.2",
        "whiteplus/csv": "1.2.*"
    }
}

Install package:, (*5)

composer install

Add autoloader in your bootstrap script:, (*6)

require 'vendor/autoload.php';

Read more in Composer documentation, (*7)

The Versions

22/12 2014

dev-master

9999999-dev http://www.wh-plus.com

Multibyte-Text supported CSV reader and writer

  Sources   Download

MIT

The Development Requires

22/12 2014

1.2.0

1.2.0.0 http://www.wh-plus.com

Multibyte-Text supported CSV reader and writer

  Sources   Download

MIT

The Development Requires

31/01 2014

1.1.3

1.1.3.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

MIT

The Development Requires

10/10 2013

1.1.2

1.1.2.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

MIT

The Development Requires

24/09 2013

1.1.1

1.1.1.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

MIT

The Development Requires

23/04 2013

1.1.0

1.1.0.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

The Development Requires

21/11 2012

1.0.9

1.0.9.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

16/10 2012

1.0.8

1.0.8.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

11/10 2012

1.0.7

1.0.7.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

11/10 2012

1.0.6

1.0.6.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

04/10 2012

1.0.5

1.0.5.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

02/10 2012

1.0.3

1.0.3.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

02/10 2012

1.0.4

1.0.4.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

02/10 2012

1.0.2

1.0.2.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

01/10 2012

1.0.1

1.0.1.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download

01/10 2012

1.0.0

1.0.0.0 http://keboola.com

Keboola CSV reader and writer

  Sources   Download