本文整理匯總了PHP中Zend_Text_Table::render方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Text_Table::render方法的具體用法?PHP Zend_Text_Table::render怎麽用?PHP Zend_Text_Table::render使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Text_Table
的用法示例。
在下文中一共展示了Zend_Text_Table::render方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: execute
/**
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int|void
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->detectMagento($output, true);
if ($this->initMagento()) {
$table = new \Zend_Text_Table(array('columnWidths' => array(8, 30, 60, 60)));
$tableData = array();
if ($this->initMagento()) {
$time = microtime(true);
$rewrites = $this->loadRewrites();
$conflictCounter = 0;
foreach ($rewrites as $type => $data) {
if (count($data) > 0 && is_array($data)) {
foreach ($data as $class => $rewriteClass) {
if (count($rewriteClass) > 1) {
if ($this->_isInheritanceConflict($rewriteClass)) {
$tableData[] = array('Type' => $type, 'Class' => $class, 'Rewrites' => implode(', ', $rewriteClass), 'Loaded Class' => $this->_getLoadedClass($type, $class));
$conflictCounter++;
}
}
}
}
}
if ($input->getOption('log-junit')) {
$this->logJUnit($tableData, $input->getOption('log-junit'), microtime($time) - $time);
} else {
if ($conflictCounter > 0) {
array_map(array($table, 'appendRow'), $tableData);
$output->write($table->render());
$message = sprintf('%d %s found!', $conflictCounter, $conflictCounter == 1 ? 'conflict was' : 'conflicts were');
$output->writeln('<error>' . $message . '</error>');
} else {
$output->writeln('<info>No rewrite conflicts were found.</info>');
}
}
}
}
}
示例2: testTableComplex
public function testTableComplex()
{
$table = new Zend_Text_Table(array('columnWidths' => array(10, 10, 10)));
$row = new Zend_Text_Table_Row();
$row->appendColumn(new Zend_Text_Table_Column('foobar'));
$row->appendColumn(new Zend_Text_Table_Column('foobar', null, 2));
$table->appendRow($row);
$row = new Zend_Text_Table_Row();
$row->appendColumn(new Zend_Text_Table_Column('foobar'));
$row->appendColumn(new Zend_Text_Table_Column('foobar', null, 2));
$table->appendRow($row);
$row = new Zend_Text_Table_Row();
$row->appendColumn(new Zend_Text_Table_Column('foobar', null, 3));
$table->appendRow($row);
$row = new Zend_Text_Table_Row();
$row->appendColumn(new Zend_Text_Table_Column('foobar'));
$row->appendColumn(new Zend_Text_Table_Column('foobar'));
$row->appendColumn(new Zend_Text_Table_Column('foobar'));
$table->appendRow($row);
$this->assertEquals($table->render(), "┌──────────┬─────────────────────┐\n" . "│foobar │foobar │\n" . "├──────────┼─────────────────────┤\n" . "│foobar │foobar │\n" . "├──────────┴─────────────────────┤\n" . "│foobar │\n" . "├──────────┬──────────┬──────────┤\n" . "│foobar │foobar │foobar │\n" . "└──────────┴──────────┴──────────┘\n");
}