在PHP中,我无法从一个进程管道到另一个进程

时间:2015-07-19 22:42:34

标签: php timer pipe

在timer.php中我有这个:

$handle = fopen( 'php://stdout', 'wa' ) ;    
$unusedEvTimerObject = new EvTimer(0, 1, function ($watchercallback)    use ($handle) { //create & call timer
    echo "=>".(Ev::iteration() % 60)."<=";
    fwrite( $handle, "Hello World! \n");
} );
  Ev::run();
fclose( $handle );

在child.php中我有这个:

$descriptorspec = array(
    0 => array("pipe", "r"),  
    1 => array("pipe", "w"),          
    2 => array("file", "/tmp/error-output.txt", "a")
);

$process = proc_open('php ', $descriptorspec, $pipes);

if (is_resource($process)) {
    fwrite($pipes[0], "<? include('app/timer.php'); ?>");
    fclose($pipes[0]);

    $output = "";
    while (!feof($pipes[1])) {
        $output .= fgets($pipes[1]);
    };
    fclose($pipes[1]);

    $return_value = proc_close($process);

    echo "command returned $return_value\n";
}

如果我用

直接调用timer.php

$ php app / timer.php

我得到的输出是&#34; =&gt; 1&lt; = Hello World! =&gt; 2&lt; = Hello World!&#34;

但如果我用$ php app / child.php调用 我没有得到输出,而我期望来自timer.php的stdout重定向到child.php并由它打印。

我甩了一下&amp; amp;我猜猜child.php没有得到任何输入,但我不明白为什么。 HALP!

1 个答案:

答案 0 :(得分:1)

示例代码中未打印$ output。

while (!feof($pipes[1])) {
    echo fgets($pipes[1]);
};

致电$&gt; php child.php然后打印定时器输出