PHP如何将stdin重定向到文本文件?

时间:2017-12-12 11:28:57

标签: php file redirect io

正如PHP讨论的here,我们可以将stdout重定向到文本文件。 我正在寻找类似的方法将stdin重定向到文件。

尽管如此,我的google searchsearch on our site结果却没什么帮助。我们可以像在here

中讨论的那样在Python中轻松完成

1 个答案:

答案 0 :(得分:1)

不确定这是否是你想要的......但你可以这样读取stdin:

$stdin = fopen('php://stdin', 'r');
$input = trim(fgets($stdin));
fclose($stdin);
file_put_contents('filename',$input);