Download the PHP package sukohi/fluent-csv without Composer
On this page you can find all versions of the php package sukohi/fluent-csv. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download sukohi/fluent-csv
More information about sukohi/fluent-csv
Files in sukohi/fluent-csv
Download sukohi/fluent-csv
More information about sukohi/fluent-csv
Files in sukohi/fluent-csv
Vendor sukohi
Package fluent-csv
Short Description A Laravel package to generate or save csv file with encoding like SJIS-win.
License MIT
Package fluent-csv
Short Description A Laravel package to generate or save csv file with encoding like SJIS-win.
License MIT
Please rate this library. Is it a good library?
Informations about the package fluent-csv
FluentCsv
A Laravel package that allows you to generate or save csv file being encoded.
This package is maintained under Laravel 5.7.
Installation
Execute composer command.
composer require sukohi/fluent-csv:3.*
Usage
Download
$csv_data = [ // UTF-8
['データ 1-1', 'データ 1-2', 'データ 1-3'],
['データ 2-1', 'データ 2-2', 'データ 2-3'],
['データ 3-1', 'データ 3-2', 'データ 3-3'],
];
$to_encoding = 'SJIS-win';
$fluent = \FluentCsv::setData($csv_data, $to_encoding);
return $fluent->download('テスト.csv'); // File name can be multi-byte character.
Save
$csv_data = [ // UTF-8
['データ 1-1', 'データ 1-2', 'データ 1-3'],
['データ 2-1', 'データ 2-2', 'データ 2-3'],
['データ 3-1', 'データ 3-2', 'データ 3-3'],
];
$fluent = \FluentCsv::setData($csv_data, 'SJIS-win');
if($fluent->save(storage_path('app/public/test.csv'))) {
echo 'Complete!';
}
Add data in loop
$items = \App\Item::get();
$fluent = \FluentCsv::setEncoding('SJIS-win');
foreach($items as $item) {
$fluent->addData($item->only(['id', 'name']));
}
return $fluent->download('test.csv');
Clear data
$fluent->clearData();
Retrieve
// Basic way
$path = '/PATH/TO/YOUR/CSV/FOLDER/test.csv';
$data = \FluentCsv::parse($path);
// with encoding
$path = '/PATH/TO/YOUR/CSV/FOLDER/test.csv';
$from_encoding = 'sjis-win';
$data = \FluentCsv::parse($path, $from_encoding);
License
This package is licensed under the MIT License.
Copyright 2017 Sukohi Kuhoh
All versions of fluent-csv with dependencies
PHP Build Version
Package Version
Requires
illuminate/support Version
^5.7|^6.0|^7.0|^8.0
The package sukohi/fluent-csv contains the following files
Loading the files please wait ....