Fixed Width
$etl->extract('fixed_width', 'path/to/file.txt', $options);Options
Columns (required)
$options = ['columns' => [
'id' => [0, 5], // Start position is 0 and length is 5.
'name' => [5, 40], // Start position is 5 and length is 40.
]];Last updated