Sign in
apache
/
zetacomponents
/
trunk
/
.
/
ConsoleTools
/
docs
/
tutorial_example_01_output_basic.php
blob: 38c444fbc80c7dc1ebf23af241a2b72e11099cc8 [
file
]
<?
php
require_once
'tutorial_autoload.php'
;
$output
=
new
ezcConsoleOutput
();
$output
->
formats
->
info
->
color
=
'blue'
;
$output
->
outputText
(
'Test text in color blue'
,
'info'
);
?>