我在MacOS中通过NSTask运行
PHP CLI,但这个问题更多的是关于CLI本身.
我正在听stderr管道,但没有任何输出,无论我尝试运行什么文件:
display_errors
directive(可以随处设置)可选地使用参数“stderr”来报告错误到stderr而不是stdout或完全禁用的错误输出.引用PHP手册条目:
Value “stderr” sends the errors to stderr instead of stdout. The value is available as of PHP 5.2.4.
或者,如果您使用命令行界面,并且想要自己输出错误,可以重新使用command-line nput/output streams:
fwrite(STDERR,'error message');
这里STDERR是已经打开的stderr流.
或者,如果要仅为此脚本执行此操作,而不是在CLI中,则可以向PHP:// stderr打开一个归档处理程序,并在其中写入错误消息.
$fe = fopen('PHP://stderr','w'); fwrite($fe,'error message');