XML
$etl->extract('xml', 'path/to/file.xml', $options);Options
Columns
$options = ['columns' => [
'id' => '/@id',
'name' => '/profile/name',
'email' => '/profile/email',
]];Loop
Last updated
$etl->extract('xml', 'path/to/file.xml', $options);$options = ['columns' => [
'id' => '/@id',
'name' => '/profile/name',
'email' => '/profile/email',
]];Last updated
$options = ['loop' => '/users/user'];