The CLI SAPI defines a few constants for I/O streams to make programming for the command line a bit easier.
An already opened stream to stdin. This saves opening it with
<?php$stdin = fopen('php://stdin', 'r');?>
<?php$line = trim(fgets(STDIN)); // reads one line from STDINfscanf(STDIN, "%d\n", $number); // reads number from STDIN?>
An already opened stream to stdout. This saves opening it with
<?php$stdout = fopen('php://stdout', 'w');?>
An already opened stream to stderr. This saves opening it with
<?php$stderr = fopen('php://stderr', 'w');?>
Given the above, you don't need to open e.g. a stream for stderr yourself but simply use the constant instead of the stream resource:
php -r 'fwrite(STDERR, "stderr\n");'
Note: These constants are not available in case of reading PHP script from stdin.
Note:
These constants are not available in case of reading PHP script from stdin.