如何写入频道3?

时间:2016-05-02 20:03:16

标签: php command-line-interface

在PHP中,我们可以通过echofwrite(STDOUT, "hello")和stderr(通道2)通过fwrite(STDERR, "error!")写入stdout(通道1)。

如何写入频道3-255?

1 个答案:

答案 0 :(得分:4)

您可以像这样写入任意通道(文件描述符):

$fp = fopen('php://fd/3','w');
fwrite($fp, "hello");

记录在案here