pop-csv
provides a streamlined way to work with PHP data and the CSV format.
It is a component of the Pop PHP Framework.
Install pop-csv
using Composer.
composer require popphp/pop-csv
Or, require it in your composer.json file
"require": {
"popphp/pop-csv" : "^4.0.0"
}
$phpData = [
[
'first_name' => 'Bob',
'last_name' => 'Smith'
],
[
'first_name' => 'Jane',
'last_name' => 'Smith'
]
];
$data = new Pop\Csv\Csv($phpData);
$csvString = $data->serialize();
The $csvString variable now contains:
first_name,last_name
Bob,Smith
Jane,Smith
You can either pass the data object a direct string of serialized data or a file containing a string of serialized data. It will detect which one it is and parse it accordingly.
$csv = new Pop\Csv\Csv($csvString);
$phpData = $csv->unserialize();
Where serializing or unserializing CSV data, there are a set of options available to tailor the process:
$options = [
'exclude' => ['id'] // An array of fields to exclude from displaying
'delimiter' => ',' // Delimiter defaults to ',' - could be "\t" or something else
'enclosure' => '"' // Default string enclosure, i.e. "my data","other data"
'escape' => '"' // String character to escape in the data, i.e. "my ""data"" here"
'fields' => true // Include the field names in the first row
'newline' => true // Allow newlines in a data cell. Set to false to trim them
'limit' => 0 // Character limit of a data cell. 0 means no limit
];
Conversely, include
can be used to only include the fields in the include
array:
$options = [
'include' => ['username', 'first_name', 'last_name'] // An array of fields to include from displaying
Pass the options array to serialize()
or unserialize()
methods:
$csvString = $csv->serialize($options);
$csvData = $csv->unserialize($options);
$phpData = [
[
'first_name' => 'Bob',
'last_name' => 'Smith'
],
[
'first_name' => 'Jane',
'last_name' => 'Smith'
]
];
$data = new Pop\Csv\Csv($phpData);
$data->writeToFile('/path/to/file.csv');
$phpData = [
[
'first_name' => 'Bob',
'last_name' => 'Smith'
],
[
'first_name' => 'Jane',
'last_name' => 'Smith'
]
];
$data = new Pop\Csv\Csv($phpData);
$data->outputToHttp('my-file.csv');
Pass a true
boolean as the second parameter, which forces attachment
for the Content-Disposition
header.
$data->outputToHttp('my-file.csv', true);
Additional HTTP headers can be passed to the third parameter:
$data->outputToHttp('my-file.csv', false, ['X-Header' => 'some-header-value']);
In the case of working with large data sets, you can append CSV data to an existing file on disk. This prevents loading large amounts of data into memory that may exceed the PHP environment's limits.
us Pop\Csv\Csv;
$phpData = [
[
'first_name' => 'Bob',
'last_name' => 'Smith'
],
[
'first_name' => 'Jane',
'last_name' => 'Smith'
]
];
Csv::appendDataToFile('my-file.csv', $data);