标签: php command-line-interface
在PHP中,我们可以通过echo或fwrite(STDOUT, "hello")和stderr(通道2)通过fwrite(STDERR, "error!")写入stdout(通道1)。
echo
fwrite(STDOUT, "hello")
fwrite(STDERR, "error!")
如何写入频道3-255?
答案 0 :(得分:4)
您可以像这样写入任意通道(文件描述符):
$fp = fopen('php://fd/3','w'); fwrite($fp, "hello");
记录在案here。