本文整理汇总了PHP中Symfony\Component\Console\Helper\Table::getStyleDefinition方法的典型用法代码示例。如果您正苦于以下问题:PHP Table::getStyleDefinition方法的具体用法?PHP Table::getStyleDefinition怎么用?PHP Table::getStyleDefinition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\Console\Helper\Table
的用法示例。
在下文中一共展示了Table::getStyleDefinition方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: renderTable
/**
* @param array $rows
* @param array|null $headers
*/
protected function renderTable(array $rows, $headers = null)
{
$table = new Table($this->output);
if (!empty($headers)) {
$table->setHeaders($headers);
} elseif ($headers === null && !empty($rows)) {
$firstRow = reset($rows);
if ($firstRow instanceof AbstractModel || $firstRow instanceof PayloadResponseInterface) {
$firstRow = $this->serializeObjectToArray($firstRow);
}
$table->setHeaders(array_keys($firstRow));
}
$table->setRows($this->simplifyRows($rows));
$style = Table::getStyleDefinition('default');
$style->setCellRowFormat('<fg=yellow>%s</>');
$table->render();
}
示例2: testGetStyleDefinition
/**
* @expectedException \InvalidArgumentException
* @expectedExceptionMessage Style "absent" is not defined.
*/
public function testGetStyleDefinition()
{
Table::getStyleDefinition('absent');
}
示例3: table
/**
* {@inheritdoc}
*/
public function table(array $headers, array $rows)
{
$style = clone Table::getStyleDefinition('symfony-style-guide');
$style->setCellHeaderFormat('<info>%s</info>');
$table = new Table($this);
$table->setHeaders($headers);
$table->setRows($rows);
$table->setStyle($style);
$table->render();
$this->newLine();
}