标签: php stderr
以下代码
<?php exit("where"); ?>
将单词where打印到stdout。
where
stdout
如何将exit()输出打印到stderr?
exit()
stderr
答案 0 :(得分:4)
只是做:
fprintf(STDERR, "where"); exit();