pingpong/csv-reader

Laravel 4 - Csv Reader
21,867 8
Install
composer require pingpong/csv-reader
Latest Version:1.0.0
PHP:>=5.4.0
License:BSD-3-Clause
Last Updated:Aug 7, 2017
Links: GitHub  ·  Packagist
Maintainer: gravitano

Laravel 4 - CSV Reader

Build Status Total Downloads Latest Stable Version Latest Unstable Version License

Server Requirement

This package is require PHP 5.4 or higher.

Installation

Open your composer.json file, and add the new required package.

"pingpong/csv-reader": "1.0.*"

Next, open a terminal and run.

composer update

Next, Add new aliases in app/config/app.php.

'CsvReader' => 'Pingpong\CsvReader\Facades\CsvReader',

Done.

Usage

Create new instance.

$path = app_path('file.csv');

$csv = CsvReader::get($path); 

// OR

$csv = CsvReader::make($path);

Get data.

$data = $csv->getData();

Get data as array.

$data = $csv->toArray();

Get data as json.

$data = $csv->toJson();

Get data as object.

$data = $csv->toObject();

Looping.

foreach($csv as $item)
{
	var_dump($item);
}

Without Laravel

Basically all functions and APIs same as above.

$path = __DIR__ . '/path/to/csvfile.csv';

$csv = new Pingpong\CsvReader\CsvReader($path);

$data = $csv->getData();

License

This package is open-sourced software licensed under The BSD 3-Clause License

Related Packages

daniel-furmanov/laravel-formatter

A formatting library that converts data output between XML, CSV, JSON, TXT, YAML...

26,529 4
monokakure/laravel-csv

Simple CSV manipulation for Laravel. Also you can select encoding.

43,001 1
soapbox/laravel-formatter

A formatting library that converts data output between XML, CSV, JSON, TXT, YAML...

1,088,116 248
maatwebsite/excel

Supercharged Excel exports and imports in Laravel

160,441,693 12,686
lanin/laravel-extend-seeder

Extension for Laravel seeder. Seed your database with CSV data.

1,523 8