Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Lexer
✓ use Goodby\CSV\Import\Standard\Lexer;
Parses a CSV file and outputs each row.
use Goodby\CSV\Import\Standard\Lexer;
use Goodby\CSV\Import\Standard\Interpreter;
$lexer = new Lexer();
$interpreter = new Interpreter();
$interpreter->addObserver(function(array $row) {
var_dump($row);
});
$lexer->parse('file.csv', $interpreter);
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.