To ease performing operations on the CSV as it is being read from or written to, the Reader and Writer classes now include methods to ease PHP stream filtering usage.
While in PHP the stream filter mode is attached to its associated filter, in League\Csv the filter mode is attached to the CSV object. This means that when you change the filter mode, you also clear all previously attached stream filters.
To be able to use the stream filtering mechanism you need to:
To be sure that the Stream Filter API is available it is recommend to use the method isActiveStreamFilter.
public AbstractCsv::isActiveStreamFilter(void): bool
isActiveStreamFilter returns true if you can safely use the API:
use League\Csv\Reader;
use League\Csv\Writer;
$reader = Reader::createFromPath('/path/to/my/file.csv', 'r');
$reader->isActiveStreamFilter(); //return true
$writer = Writer::createFromFileObject(new SplTempFileObject());
$writer->isActiveStreamFilter(); //return false the API can not be use
The stream filter mode property is set using PHP internal stream filter constant STREAM_FILTER_*.
public AbstractCsv::setStreamFilterMode(int $mode): AbstractCsv
public AbstractCsv::getStreamFilterMode(void): int
Unlike fopen, the mode is attached to the object and not to a specific stream filter.
setStreamFilterMode: set the object stream filter mode and remove all previously attached stream filters;getStreamFilterMode: returns the current stream filter mode;By default:
Reader class the property is equal to STREAM_FILTER_READ;Writer class the property is equal to STREAM_FILTER_WRITE;php://filter/), the mode will be the one used by the meta wrapper;use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/my/file.csv', 'r');
if ($reader->isActiveStreamFilter()) {
$current_mode = $reader->getStreamFilterMode(); //returns STREAM_FILTER_READ
$reader->setStreamFilterMode(STREAM_FILTER_WRITE);
//this means that any filter you will set will have no effect when reading the CSV
//all previously attached stream filters if they existed have been removed
$current_mode = $reader->getStreamFilterMode(); //returns STREAM_FILTER_WRITE
}
To manage your registered stream filter collection you can use the following methods:
public AbstractCsv::appendStreamFilter(string $filtername): AbstractCsv
public AbstractCsv::prependStreamFilter(string $filtername): AbstractCsv
public AbstractCsv::removeStreamFilter(string $filtername): AbstractCsv
public AbstractCsv::hasStreamFilter(string $filtername): bool
public AbstractCsv::clearStreamFilter(void): AbstractCsv
appendStreamFilter: adds a stream filter at the bottom of the collectionprependStreamFilter: adds a stream filter at the top of the collectionremoveStreamFilter: removes a stream filter from the collectionhasStreamFilter: check the presence of a stream filter in the collectionclearStreamFilter: removes all the currently attached filters.The $filtername parameter is a string that represents the filter as registered using php stream_filter_register function or one of PHP internal stream filter.
Since the stream filters are attached to the CSV object:
newReader or newWriter methodsThe filters are automatically applied when the stream filter mode matches the method you are using.
See below an example using League\Csv\Reader to illustrate:
use League\Csv\Reader;
stream_filter_register('convert.utf8decode', 'MyLib\Transcode');
// 'MyLib\Transcode' is a class that extends PHP's php_user_filter class
$reader = Reader::createFromPath('/path/to/my/chinese.csv', 'r');
if ($reader->isActiveStreamFilter()) {
$reader->appendStreamFilter('string.toupper');
$reader->appendStreamFilter('string.rot13');
$reader->prependStreamFilter('convert.utf8decode');
$reader->removeStreamFilter('string.rot13');
}
foreach ($reader as $row) {
// each row cell now contains strings that have been:
// first UTF8 decoded and then uppercased
}
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/my/chinese.csv', 'r');
$reader->appendStreamFilter('convert.iconv.UTF-8/ASCII//TRANSLIT');
var_dump($reader->fetchAll());
use League\Csv\Writer;
$writer = Writer::createFromPath('/path/to/my/file.csv');
$writer->setDelimiter(',');
if ($writer->isActiveStreamFilter()) {
$writer->addStreamFilter('string.toupper');
}
//first insert -> file.csv will contain uppercased data.
$writer->insertOne(['bill', 'gates', 'bill@microsoft.com']);
if ($writer->isActiveStreamFilter()) {
//isActiveStreamFilter returns false so this code is never executed
$writer->addStreamFilter('string.rot13');
}
//this filter is added to the collection but will never be applied!!
$writer->addStreamFilter('string.rot13');
//The inserted array will only be uppercased!!
$writer->insertOne('steve,job,job@apple.com');
echo $writer; //the newly added rows are all uppercased
Please review the stream filtering example and the attached FilterTranscode Class to understand how to use the filtering mechanism to convert a CSV into another charset.
The FilterTranscode class is not attached to the Library because converting your CSV may depend on the extension you choose, in PHP you can use the following extensions :
How can I help you explore Laravel packages today?