Stream Filtering
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.
Stream Filter API
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:
- validate that the stream filter API is active;
- set the class filtering mode;
- attached your stream filters to the CSV object;
Detecting if the API is active
To be sure that the Stream Filter API is available it is recommend to use the method isActiveStreamFilter
, which 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
Setting and getting the object stream filter mode
The stream filter mode property is set using PHP internal stream filter constant STREAM_FILTER_*
, but unlike fopen
, the mode is attached to the object and not to a stream filter.
setStreamFilterMode($mode)
: set the object stream filter mode and remove all previously attached stream filters;getStreamFilterMode()
: returns the current stream filter mode;
By default:
- when using the
Reader
class the property is equal toSTREAM_FILTER_READ
; - when using the
Writer
class the property is equal toSTREAM_FILTER_WRITE
; - If you instantiate the class using a PHP filter meta wrapper (ie:
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
}
Managing Stream filter
To manage your registered stream filter collection you can use the following methods
appendStreamFilter($filtername)
: adds a stream filter at the bottom of the collectionprependStreamFilter($filtername)
: adds a stream filter at the top of the collectionremoveStreamFilter($filtername)
: removes a stream filter from the collectionhasStreamFilter($filtername)
: 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:
- The filters will not be cleared between method calls unless specified
- The filters will not be copied to the new class when using
newReader
ornewWriter
methods
The 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');
$filter = urlencode('convert.iconv.UTF-8/ASCII//TRANSLIT);
$reader->appendStreamFilter($filter);
var_dump($reader->fetchAll());
Limitations
Writer class on Editing Mode
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
Example
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 you CSV may depend on the extension you choose, in PHP you can use the following extensions :