PHP ETL
  • Introduction
  • Getting Started
  • Extractors
    • Collection
    • CSV
    • Fixed Width
    • JSON
    • Query
    • Table
    • XML
  • Transformers
    • Convert Case
    • JSON Decode
    • JSON Encode
    • Rename Columns
    • Trim
    • Unique Rows
  • Loaders
    • Insert
    • Insert/Update
  • Helpers
  • Running Processes
Powered by GitBook
On this page

Loaders

PreviousUnique RowsNextInsert

Last updated 6 years ago

Loaders are the data outputs of etl. They can be used multiple times in the same process. Loaders receive three arguments: type, destination and options (optional).

$etl->load('type', $destination, $options);

Available loaders types

Insert
Insert/Update