mmarica/display-table

Display tables in text format

1.0.0 2017-01-22 20:44 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:35:42 UTC


README

+=========+========+=======+=========+
| Console | Tables | Made  |  Easy   |
+=========+========+=======+=========+

Display tables

Latest Stable Version Software License Build Status codecov.io

A simple PHP Library for generating tables in text format, useful for writing summaries in log or console.

Table of Contents

Installation

The easiest way to install is via composer:

$ composer require mmarica/display-table

Requirements

The following versions of PHP are supported:

  • PHP 5.6
  • PHP 7.0
  • PHP 7.1

Documentation

Example

Printing a text table is as simple as this:

<?php
require_once dirname(__FILE__) . '/vendor/autoload.php';

use Mmarica\DisplayTable;

print DisplayTable::create()
    ->headerRow(['#', 'Person', 'Hobbies'])
    ->dataRows([
        ['1', 'Mihai', 'Cycling, Gaming, Programming'],
        ['2', 'Chewbacca', 'Growling, hibernating'],
        ['3', 'Philip J. Fry', 'Time traveling, eating anchovies'],
    ])
    ->toText()->generate();
.---.---------------.----------------------------------.
| # |    Person     |             Hobbies              |
:---+---------------+----------------------------------:
| 1 | Mihai         | Cycling, Gaming, Programming     |
| 2 | Chewbacca     | Growling, hibernating            |
| 3 | Philip J. Fry | Time traveling, eating anchovies |
'---'---------------'----------------------------------'