h0gar / csv
Installs: 1 082
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
This package is not auto-updated.
Last update: 2024-11-13 09:30:32 UTC
README
#Csv
A lightweight package creat csv files.
composer require h0gar/csv *
$csv = new \H0gar\Csv\Csv([
'id',
'firstname',
'name'
]);
$content = [
[
1,
'foo',
'bar'
],
// ..
];
foreach($content as $row)
$csv->add($row);
$result = $csv->render();
##Contributing
Please submit all issues and pull requests to the h0gar/csv repository.
##License
Open-sourced software licensed under the MIT license