PHP code example of marcin-orlowski / text-table
1. Go to this page and download the library: Download marcin-orlowski/text-table 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/ */
marcin-orlowski / text-table example snippets
$table = new TextTable(['ID', 'NAME', 'SCORE']);
$table->addRows([
[1, 'John', 12],
[2, 'Tommy', 15],
]);
echo $table->renderAsString();
┌────┬───────┬───────┐
│ ID │ NAME │ SCORE │
├────┼───────┼───────┤
│ 1 │ John │ 12 │
│ 2 │ Tommy │ 15 │
└────┴───────┴───────┘