在 PHP 中写入大块时STDOUT
,您可以这样做:
echo <<<END_OF_STUFF
lots and lots of text
over multiple lines
etc.etc
END_OF_STUFF;
(即heredoc)
我需要做类似的事情,但要STDERR
. 是否有另一个类似echo
但使用的命令STDERR
?
对于一个简单的解决方案 - 试试这个
file_put_contents('php://stderr', 'This text goes to STDERR',FILE_APPEND);
该FILE_APPEND
参数将附加数据而不是覆盖它。fopen
您还可以使用andfwrite
函数直接写入错误流。
更多信息可以在 - http://php.net/manual/en/features.commandline.io-streams.php找到
是的,使用 php:// 流包装器:http://php.net/manual/en/wrappers.php.php
$stuff = <<<END_OF_STUFF
lots and lots of text
over multiple lines
etc.etc
END_OF_STUFF;
$fh = fopen('php://stderr','a'); //both (a)ppending, and (w)riting will work
fwrite($fh,$stuff);
fclose($fh);
在CLI SAPI中,它可以像将 Heredoc 字符串作为参数传递给fwrite()
STDERR 常量一样简单。
fwrite(STDERR, <<< EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD
);