PHP code example of ek / csv

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

    

ek / csv example snippets




$csv = new ek\CSV();
$header = ['Full Name', 'Address', 'City', 'State', 'Zip'];
$rows = ['John Doe', '1234 Street', 'St.Louis', 'MO', '63139'];
$exportFileName = 'export.csv'

$csv->render($headers, $rows, $exportfileName);