1. Go to this page and download the library: Download fab2s/yaetl library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
fab2s / yaetl example snippets
$yaEtl = new YaEtl;
$yaEtl->from($extractor = new Extractor)
-> transform(new Transformer)
->to(new Loader)
->exec();
// forgot something ?
// continuing with the same object
$yaEtl->transform(new AnotherTransformer)
->to(new CsvLoader)
->transform(new SuperCoolTransformer)
->to(new S3Loader)
// never too cautious
->to(new FlatLogLoader)
// Flows are repeatable
->exec();
// oh but what if ...
$yaEtl->branch(
(new YaEtl)->transform(new SwaggyTransformer)
// Enrich $extractor's records
->join($extractor, new HypeJoiner($pdo, $query, new OnClose('upstreamFieldName', 'joinerFieldName', function($upstreamRecord, $joinerRecord) {
return array_replace($joinerRecord, $upstreamRecord);
})))
->transform(new PutItAllTogetherTransformer)
->to(new SuperSpecializedLoader)
)->exec();
// or another branch for a subset of the extraction
$yaEtl->branch(
(new YaEtl)->qualify(new CallableQualifier(function($record) {
return !empty($record['is_great']);
})
->transform(new GreatTransformer)
->to(new GreatLoader)
)->exec();
// need a Progress Bar ?
$progressSubscriber = new ProgressBarSubscriber($yaEtl);
// with count ?
$progressSubscriber->setNumRecords($count);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.