|
12 anni fa | |
---|---|---|
.. | ||
lib/Exporter | 12 anni fa | |
test | 12 anni fa | |
.gitignore | 12 anni fa | |
.travis.yml | 12 anni fa | |
README.md | 12 anni fa | |
composer.json | 12 anni fa | |
phpunit.xml.dist | 12 anni fa |
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