PHP code example of alexskrypnyk / csvtable

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

    

alexskrypnyk / csvtable example snippets


$csv = file_get_contents($csv_file);
// Format using the default formatter.
print (new CsvTable($csv))->format();

print (CsvTable::fromFile($file))->format();

print (CsvTable::fromFile($file))->format('text_table');

print (CsvTable::fromFile($file))->withoutHeader()->format('text_table');

print (CsvTable::fromFile($file))->format('markdown_table');

print (CsvTable::fromFile($file))->format(function ($header, $rows, $options) {
  $output = '';

  if (count($header) > 0) {
    $output = implode('|', $header);
    $output .= "\n" . str_repeat('=', strlen($output)) . "\n";
  }

  return $output . implode("\n", array_map(static function ($row): string {
    return implode('|', $row);
  }, $rows));
});

print (CsvTable::fromFile($file))->withoutHeader()->format(CustomFormatter::class);

$formatter_options = ['option1' => 'value1', 'option2' => 'value2'];
print (CsvTable::fromFile($file))->withoutHeader()->format([CustomFormatter::class, 'customFormat'], $formatter_options);