51

我想做这样的事情:

$ [mysql query that produces many lines] | php parse_STDIN.php

parse_STDIN.php文件中,我希望能够从标准输入逐行解析我的数据。

4

2 回答 2

100

使用STDIN常量作为文件处理程序。

while($f = fgets(STDIN)){
    echo "line: $f";
}

注意:STDIN 上的 fgets 读取\n字符。

于 2012-08-15T11:13:03.077 回答
16

您也可以使用生成器 - 如果您不知道 STDIN 的大小。

需要 PHP 5 >= 5.5.0, PHP 7

类似于以下内容:

function stdin_stream()
{
    while ($line = fgets(STDIN)) {
        yield $line;
    }
}

foreach (stdin_stream() as $line) {
    // do something with the contents coming in from STDIN
}

您可以在此处阅读有关生成器的更多信息(或谷歌搜索教程): http: //php.net/manual/en/language.generators.overview.php

于 2016-02-13T20:25:57.070 回答