Programmer's Reference Guide
| Zend_Text_Figlet |
Zend_Text_Table
Zend_Text_Table is a component to create text based tables
on the fly with different decorators. This can be helpful, if you either
want to send structured data in text emails, which are used to have
mono-spaced fonts, or to display table information in a CLI application.
Zend_Text_Table supports multi-line columns, colspan and
align as well.
Note: Encoding
Zend_Text_Tableexpects your strings to be UTF-8 encoded by default. If this is not the case, you can either supply the character encoding as a parameter to theconstructoror thesetContentmethod ofZend_Text_Table_Column. Alternatively if you have a different encoding in the entire process, you can define the standard input charset withZend_Text_Table::setInputCharset($charset). In case you need another output charset for the table, you can set this withZend_Text_Table::setOutputCharset($charset).
A Zend_Text_Table object consists of rows, which contain
columns, represented by Zend_Text_Table_Row and
Zend_Text_Table_Column. When creating a table, you can
supply an array with options for the table. Those are:
-
columnWidths(required): An array defining all columns width their widths in characters. -
decorator: The decorator to use for the table borders. The default isunicode, but you may also specifyasciior give an instance of a custom decorator object. -
padding: The left and right padding withing the columns in characters. The default padding is zero. -
AutoSeparate: The way how the rows are separated with horizontal lines. The default is a separation between all rows. This is defined as a bitmask containing one ore more of the following constants ofZend_Text_Table:-
Zend_Text_Table::AUTO_SEPARATE_NONE -
Zend_Text_Table::AUTO_SEPARATE_HEADER -
Zend_Text_Table::AUTO_SEPARATE_FOOTER -
Zend_Text_Table::AUTO_SEPARATE_ALL
-
Rows are simply added to the table by creating a new instance of
Zend_Text_Table_Row, and appending it to the table via the
appendRow method. Rows themselves have no options. You can also
give an array to directly to the appendRow method, which then
will automatically converted to a row object, containing multiple column
objects.
The same way you can add columns to the rows. Create a new instance of
Zend_Text_Table_Column and then either set the column
options in the constructor or later with the set* methods.
The first parameter is the content of the column which may have
multiple lines, which in the best case are separated by just the
\n character. The second parameter defines the align, which
is left by default and can be one of the class constants of
Zend_Text_Table_Column:
-
ALIGN_LEFT -
ALIGN_CENTER -
ALIGN_RIGHT
appendColumn in your row object
with the column object as parameter. Alternatively you can directly
give a string to the appendColumn method.
To finally render the table, you can either use the render
method of the table, or use the magic method __toString
by doing echo $table; or $tableString = (string) $table.
Example #1 Using Zend_Text_Table
This example illustrates the basic use of Zend_Text_Table
to create a simple table:
$table = new Zend_Text_Table(array('columnWidths' => array(10, 20)));
// Either simple
$table->appendRow(array('Zend', 'Framework'));
// Or verbose
$row = new Zend_Text_Table_Row();
$row->appendColumn(new Zend_Text_Table_Column('Zend'));
$row->appendColumn(new Zend_Text_Table_Column('Framework'));
$table->appendRow($row);
echo $table;
This will result in the following output:
┌──────────┬────────────────────┐
│Zend │Framework │
└──────────┴────────────────────┘
| Zend_Text_Figlet |
