本文整理汇总了PHP中ezcConsoleOutput::setOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP ezcConsoleOutput::setOptions方法的具体用法?PHP ezcConsoleOutput::setOptions怎么用?PHP ezcConsoleOutput::setOptions使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ezcConsoleOutput
的用法示例。
在下文中一共展示了ezcConsoleOutput::setOptions方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ezcConsoleOutput
<?php
require_once 'tutorial_autoload.php';
$output = new ezcConsoleOutput();
$output->formats->info->color = 'blue';
$output->formats->info->style = array('bold');
$output->setOptions(array('autobreak' => 78, 'verbosityLevel' => 3));
$output->outputLine('This is a very very long info text. It has so much information in ' . 'it, that it will definitly not fit into 1 line. Therefore, ' . 'ezcConsoleOutput will automatically wrap the line for us.', 'info');
$output->outputLine();
$output->outputLine('This verbose information will currently not be displayed.', 'info', 10);
$output->outputLine('But this verbose information will be displayed.', 'info', 2);
示例2: testSetOptionsFailure
public function testSetOptionsFailure()
{
$output = new ezcConsoleOutput();
try {
$output->setOptions(true);
} catch (ezcBaseValueException $e) {
return;
}
$this->fail("Exception not thrown on invalid parameter to ezcConsoleOutput->setOptions().");
}
示例3: cliOutputOptions
/**
* Returns a fully configured ezcConsoleOutput instance
*
* @param ezcConsoleOutput $output A not configured output instance
* @return ezcConsoleOutput fully configured output instance
*/
protected function cliOutputOptions( $output )
{
$output->formats->info->color = 'blue';
$output->formats->info->style = array( 'bold' );
$output->formats->error->color = 'red';
$output->formats->error->style = array( 'bold' );
$output->formats->error->target = ezcConsoleOutput::TARGET_STDERR;
$output->setOptions(
array(
'verbosityLevel' => 3
)
);
$output->formats->success->color = 'green';
$output->formats->failure->color = 'red';
return $output;
}