Sevajol Bastien e88f214ced maj vendor 12 yıl önce
..
lib/Exporter maj vendor 12 yıl önce
test maj vendor 12 yıl önce
.gitignore maj vendor 12 yıl önce
.travis.yml maj vendor 12 yıl önce
README.md maj vendor 12 yıl önce
composer.json maj vendor 12 yıl önce
phpunit.xml.dist maj vendor 12 yıl önce

README.md

Data Exporter

Build Status

Data Exporter is a lightweight library to export data into different formats.


<?php
// Prepare the data source
$dbh = new \PDO('sqlite:foo.db');
$stm = $dbh->prepare('SELECT id, username, email FROM user');
$stm->execute();

$source = new PDOStatementSource($stm);

// Prepare the writer
$writer = new CsvWriter('data.csv');

// Export the data
Handler::create($source, $writer)->export();

Google Groups: For questions and proposals you can post on this google groups