This document is for CakePHP's development version, which can be significantly different
from previous releases.
You may want to read
current stable release documentation instead.
CakePHP provides the ConsoleIo
object to commands so that they can
interactively read user input and output information to the user.
Command Helpers can be accessed and used from any command:
// Output some data as a table.
$io->helper('Table')->output($data);
// Get a helper from a plugin.
$io->helper('Plugin.HelperName')->output($data);
You can also get instances of helpers and call any public methods on them:
// Get and use the Progress Helper.
$progress = $io->helper('Progress');
$progress->increment(10);
$progress->draw();
While CakePHP comes with a few command helpers you can create more in your application or plugins. As an example, we’ll create a simple helper to generate fancy headings. First create the src/Command/Helper/HeadingHelper.php and put the following in it:
<?php
namespace App\Command\Helper;
use Cake\Console\Helper;
class HeadingHelper extends Helper
{
public function output($args)
{
$args += ['', '#', 3];
$marker = str_repeat($args[1], $args[2]);
$this->_io->out($marker . ' ' . $args[0] . ' ' . $marker);
}
}
We can then use this new helper in one of our shell commands by calling it:
// With ### on either side
$this->helper('Heading')->output(['It works!']);
// With ~~~~ on either side
$this->helper('Heading')->output(['It works!', '~', 4]);
Helpers generally implement the output()
method which takes an array of
parameters. However, because Console Helpers are vanilla classes they can
implement additional methods that take any form of arguments.
Note
Helpers can also live in src/Shell/Helper
for backwards compatibility.
The TableHelper assists in making well formatted ASCII art tables. Using it is pretty simple:
$data = [
['Header 1', 'Header', 'Long Header'],
['short', 'Longish thing', 'short'],
['Longer thing', 'short', 'Longest Value'],
];
$io->helper('Table')->output($data);
// Outputs
+--------------+---------------+---------------+
| Header 1 | Header | Long Header |
+--------------+---------------+---------------+
| short | Longish thing | short |
| Longer thing | short | Longest Value |
+--------------+---------------+---------------+
You can use the <text-right>
formatting tag in tables to right align
content:
$data = [
['Name', 'Total Price'],
['Cake Mix', '<text-right>1.50</text-right>'],
];
$io->helper('Table')->output($data);
// Outputs
+----------+-------------+
| Name 1 | Total Price |
+----------+-------------+
| Cake Mix | 1.50 |
+----------+-------------+
The ProgressHelper can be used in two different ways. The simple mode lets you provide a callback that is invoked until the progress is complete:
$io->helper('Progress')->output(['callback' => function ($progress) {
// Do work here.
$progress->increment(20);
$progress->draw();
}]);
You can control the progress bar more by providing additional options:
total
The total number of items in the progress bar. Defaults
to 100.
width
The width of the progress bar. Defaults to 80.
callback
The callback that will be called in a loop to advance the
progress bar.
An example of all the options in use would be:
$io->helper('Progress')->output([
'total' => 10,
'width' => 20,
'callback' => function ($progress) {
$progress->increment(2);
$progress->draw();
}
]);
The progress helper can also be used manually to increment and re-render the progress bar as necessary:
$progress = $io->helper('Progress');
$progress->init([
'total' => 10,
'width' => 20,
]);
$progress->increment(4);
$progress->draw();
When building interactive console applications you’ll need to get user input. CakePHP provides a way to do this:
// Get arbitrary text from the user.
$color = $io->ask('What color do you like?');
// Get a choice from the user.
$selection = $io->askChoice('Red or Green?', ['R', 'G'], 'R');
Selection validation is case-insensitive.
Creating files is often important part of many console commands that help
automate development and deployment. The createFile()
method gives you
a simple interface for creating files with interactive confirmation:
// Create a file with confirmation on overwrite
$io->createFile('bower.json', $stuff);
// Force overwriting without asking
$io->createFile('bower.json', $stuff, true);
Writing to stdout
and stderr
is another common operation in CakePHP:
// Write to stdout
$io->out('Normal message');
// Write to stderr
$io->err('Error message');
In addition to vanilla output methods, CakePHP provides wrapper methods that style output with appropriate ANSI colors:
// Green text on stdout
$io->success('Success message');
// Cyan text on stdout
$io->info('Informational text');
// Blue text on stdout
$io->comment('Additional context');
// Red text on stderr
$io->error('Error text');
// Yellow text on stderr
$io->warning('Warning text');
Color formatting will automatically be disabled if posix_isatty
returns
true, or if the NO_COLOR
environment variable is set.
ConsoleIo
provides two convenience methods regarding the output level:
// Would only appear when verbose output is enabled (-v)
$io->verbose('Verbose message');
// Would appear at all levels.
$io->quiet('Quiet message');
You can also create blank lines or draw lines of dashes:
// Output 2 newlines
$io->out($io->nl(2));
// Draw a horizontal line
$io->hr();
Lastly, you can update the current line of text on the screen:
$io->out('Counting down');
$io->out('10', 0);
for ($i = 9; $i > 0; $i--) {
sleep(1);
$io->overwrite($i, 0, 2);
}
Note
It is important to remember, that you cannot overwrite text once a new line has been output.
Console applications often need different levels of verbosity. For example, when running as a cron job, most output is un-necessary. You can use output levels to flag output appropriately. The user of the shell, can then decide what level of detail they are interested in by setting the correct flag when calling the command. There are 3 levels:
QUIET
- Only absolutely important information should be marked for quiet
output.
NORMAL
- The default level, and normal usage.
VERBOSE
- Mark messages that may be too noisy for everyday use, but
helpful for debugging as VERBOSE
.
You can mark output as follows:
// Would appear at all levels.
$io->out('Quiet message', 1, ConsoleIo::QUIET);
$io->quiet('Quiet message');
// Would not appear when quiet output is toggled.
$io->out('normal message', 1, ConsoleIo::NORMAL);
$io->out('loud message', 1, ConsoleIo::VERBOSE);
$io->verbose('Verbose output');
// Would only appear when verbose output is enabled.
$io->out('extra message', 1, ConsoleIo::VERBOSE);
$io->verbose('Verbose output');
You can control the output level of commands, by using the --quiet
and
--verbose
options. These options are added by default, and allow you to
consistently control output levels inside your CakePHP comands.
The --quiet
and --verbose
options also control how logging data is
output to stdout/stderr. Normally info and higher log messages are output to
stdout/stderr. When --verbose
is used, debug logs will be output to stdout.
When --quiet
is used, only warning and higher log messages will be output to
stderr.
Styling output is done by including tags - just like HTML - in your output. These tags will be replaced with the correct ansi code sequence, or stripped if you are on a console that doesn’t support ansi codes. There are several built-in styles, and you can create more. The built-in ones are
success
Success messages. Green text.
error
Error messages. Red text.
warning
Warning messages. Yellow text.
info
Informational messages. Cyan text.
comment
Additional text. Blue text.
question
Text that is a question, added automatically by shell.
info.bg
White background with cyan text.
warning.bg
Yellow background with black text.
error.bg
Red background with black text.
success.bg
Green background with black text.
You can create additional styles using $io->setStyle()
. To declare a
new output style you could do:
$io->setStyle('flashy', ['text' => 'magenta', 'blink' => true]);
This would then allow you to use a <flashy>
tag in your shell output, and if
ansi colors are enabled, the following would be rendered as blinking magenta
text $this->out('<flashy>Whoooa</flashy> Something went wrong');
. When
defining styles you can use the following colors for the text
and
background
attributes:
black
blue
cyan
green
magenta
red
white
yellow
You can also use the following options as boolean switches, setting them to a truthy value enables them.
blink
bold
reverse
underline
Adding a style makes it available on all instances of ConsoleOutput as well, so you don’t have to redeclare styles for both stdout and stderr objects.
Changed in version 5.1.0: The info.bg
, warning.bg
, error.bg
, and success.bg
were added.
Although coloring is pretty, there may be times when you want to turn it off, or force it on:
$io->outputAs(ConsoleOutput::RAW);
The above will put the output object into raw output mode. In raw output mode, no styling is done at all. There are three modes you can use.
ConsoleOutput::COLOR
- Output with color escape codes in place.
ConsoleOutput::PLAIN
- Plain text output, known style tags will be
stripped from the output.
ConsoleOutput::RAW
- Raw output, no styling or formatting will be done.
This is a good mode to use if you are outputting XML or, want to debug why
your styling isn’t working.
By default on *nix systems ConsoleOutput objects default to color output.
On Windows systems, plain output is the default unless the ANSICON
environment variable is present.