D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api
/
vendor
/
symfony
/
console
/
Tests
/
Fixtures
/
Style
/
SymfonyStyle
/
command
/
Filename :
command_8.php
back
Copy
<?php use Symfony\Component\Console\Helper\TableCell; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure formatting tables when using multiple headers with TableCell return function (InputInterface $input, OutputInterface $output) { $headers = [ [new TableCell('Main table title', ['colspan' => 3])], ['ISBN', 'Title', 'Author'], ]; $rows = [ [ '978-0521567817', 'De Monarchia', new TableCell("Dante Alighieri\nspans multiple rows", ['rowspan' => 2]), ], ['978-0804169127', 'Divine Comedy'], ]; $output = new SymfonyStyle($input, $output); $output->table($headers, $rows); };