Download the PHP package cego/php-fixed-length-file-parser without Composer
On this page you can find all versions of the php package cego/php-fixed-length-file-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cego/php-fixed-length-file-parser
More information about cego/php-fixed-length-file-parser
Files in cego/php-fixed-length-file-parser
Package php-fixed-length-file-parser
Short Description A parser class for handling fixed length text files in PHP
License MIT
Homepage https://github.com/fanatique/php-fixed-length-file-parser
Informations about the package php-fixed-length-file-parser
php-fixed-length-file-parser
A parser class for handling fixed length text files in PHP.
Fixed Length Files (aka poor man's CSV) are plain text files with one data set per row but without any delimiter.
01Amy BLUES
02Bob REDS
...
Features
This class provides a rather comfortable way to handle this type of file on PHP.
You can:
- register a pre flight check to determine whether or not a row has to be parsed
- register a callback to handle each line
- register a chopping map which transforms each row into an assiciative array
Usage
The following example shows how to transform a fixed length file into an associative array.
The working example can be found in example/parsing.php
.
$parser = new \Fanatique\Parser\FixedLengthFileParser();
//Set the chopping map (aka where to extract the fields)
$parser->setChoppingMap(array(
array('field_name' => 'id', 'start' => 0, 'length' => 2),
array('field_name' => 'name', 'start' => 2, 'length' => 5),
array('field_name' => 'team', 'start' => 7, 'length' => 5),
));
field_name
and length
are required and start
is an optional parameter. If start
is omitted, it will be set to the start
plus length
value of the previous map entry.
//Set the absolute path to the file
$parser->setFilePath(__DIR__ . '/example.dat');
//Parse the file
try {
$parser->parse();
} catch (\Fanatique\Parser\ParserException $e) {
echo 'ERROR - ' . $e->getMessage() . PHP_EOL;
exit(1);
}
//Get the content
var_dump($parser->getContent());
Registering a pre flight check
A pre flight check can be registered to be applied to each row before it is parsed. The closure needs to return a boolean value with:
false
: line needs not to be parsedtrue
: parse line
This example ignores any line which md5 sum is f23f81318ef24f1ba4df4781d79b7849
:
$linesToIgnore = array('f23f81318ef24f1ba4df4781d79b7849');
$parser->setPreflightCheck(function($currentLineStr) use($linesToIgnore) {
if (in_array(md5($currentLineStr), $linesToIgnore)) {
//Ignore line
$ret = false;
} else {
//Parse line
$ret = true;
}
return $ret;
}
);
Registering a callback
Finally you can register a callback which is applied to each parsed line and allows you to process it. The closure gets the parsed line as an array and it is expected to return an array of the same format.
$parser->setCallback(function(array $currentLine) {
$currentLine['team'] = ucwords(strtolower($currentLine['team']));
return $currentLine;
}
);
All versions of php-fixed-length-file-parser with dependencies
ext-mbstring Version *
ext-iconv Version *