PHP code example of idct / php-db-csv-writer

1. Go to this page and download the library: Download idct/php-db-csv-writer 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/ */

    

idct / php-db-csv-writer example snippets


use IDCT\CsvWriter\DbCsvWriter;
$dbCsvWriter = new DbCsvWriter();

$dbCsvWriter->startCollection('firstcollection',['fieldA', 'fieldB']);

$dbCsvWriter->openCollection($name);

$dbCsvWriter->closeCollection();

$dbCsvWriter->removeCollection();

$dbCsvWriter->closeCollection(true);

$dbCsvWriter->setPdo($pdo, false);