当前位置: 首页>>代码示例>>PHP>>正文


PHP Table::getStyleDefinition方法代码示例

本文整理汇总了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();
 }
开发者ID:cleentfaar,项目名称:slack-cli,代码行数:21,代码来源:AbstractApiCommand.php

示例2: testGetStyleDefinition

 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Style "absent" is not defined.
  */
 public function testGetStyleDefinition()
 {
     Table::getStyleDefinition('absent');
 }
开发者ID:drickferreira,项目名称:rastreador,代码行数:8,代码来源:TableTest.php

示例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();
 }
开发者ID:levanigongadze,项目名称:Labweb,代码行数:14,代码来源:SymfonyStyle.php


注:本文中的Symfony\Component\Console\Helper\Table::getStyleDefinition方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。