Symfony Table通常将第一行与其他行的颜色不同。但是,我希望第一行和第一列具有相同的样式。我知道存在color
,但我无法弄清楚如何给第一列+第一行提供相同的样式。在此示例表中,我希望第一列也显示为绿色(文本行A,行B和行C)。
可以使用以下代码生成此示例表:
TableStyle
干杯
答案 0 :(得分:2)
您需要创建TableStyle
个实例并设置cellRowContentFormat
,如下所示:
<?php
use Symfony\Component\Console\Helper\Table;
require_once 'vendor/autoload.php';
$output = new Symfony\Component\Console\Output\ConsoleOutput();
$table = new Table($output);
$style = new \Symfony\Component\Console\Helper\TableStyle();
$style->setCellRowContentFormat('<info> %s </info>');
$table->setColumnStyle(0, $style);
$table
->setHeaders(array('Col A', 'Col B', 'Col C'))
->setRows(array(
array('Row A', 'Divine Comedy', 'Dante Alighieri'),
array('Row B', 'A Tale of Two Cities', 'Charles Dickens'),
array('Row C', 'The Lord of the Rings', 'J. R. R. Tolkien'),
))
;
$table->render();
您可以查看TableStyle::$cellRowContentFormat
和TableStyle::$cellHeaderFormat
成员默认值:默认情况下$cellHeaderFormat
为'<info>%s</info>'
,此值使单元格标题为绿色(信息颜色)。