wiki/content/20201111104124-syfmony_console_table_titles.md

42 lines
819 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-11
2024-05-06 20:40:05 +00:00
id: a0217544-b988-4292-9c8d-003bdafb766b
title: Syfmony Console Table Titles
---
# Introduction
Introduced in [Symfony 4.2](20201111101706-symfony_4_2), you can now add
table titles to console output.
# Syntax
``` php
use Symfony\Component\Console\Helper\Table;
// ...
$table = new Table($output);
$table
->setHeaderTitle('Books')
->setFooterTitle('Page 1/2')
->setHeaders(['ISBN', 'Title', 'Author'])
->setRows([
['99921-58-10-7', 'Divine Comedy', 'Dante Alighieri'],
// ...
])
;
$table->render();
```
## Set max column width
``` php
// ...
// the first argument is the column position (starting from 0) and
// the second argument is the max length in characters
$table->setColumnMaxWidth(0, 5);
$table->setColumnMaxWidth(1, 10);
$table->render();
```