как получить вывод proc_open () - PullRequest
9 голосов
/ 16 мая 2011

Я пытался получить вывод из метода proc_open в php, но когда я его печатал, я получал пустой.

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

$process = proc_open("time ./a  a.out", $descriptorspec, $pipes, $cwd);

Насколько я знаю, я могу получить вывод с stream_get_contents()

echo stream_get_contents($pipes[1]);
fclose($pipes[1]);

Но я не могу этого сделать .. Любое предложение?

Спасибо, прежде чем ...

Ответы [ 2 ]

7 голосов
/ 25 марта 2013

это еще один пример с proc_open().Я использую команду Win32 ping.exe в этом примере.CMIIW

set_time_limit(1800);
ob_implicit_flush(true);

$exe_command = 'C:\\Windows\\System32\\ping.exe -t google.com';

$descriptorspec = array(
    0 => array("pipe", "r"),  // stdin
    1 => array("pipe", "w"),  // stdout -> we use this
    2 => array("pipe", "w")   // stderr 
);

$process = proc_open($exe_command, $descriptorspec, $pipes);

if (is_resource($process))
{

    while( ! feof($pipes[1]))
    {
        $return_message = fgets($pipes[1], 1024);
        if (strlen($return_message) == 0) break;

        echo $return_message.'<br />';
        ob_flush();
        flush();
    }
}

Надеюсь, это поможет =)

7 голосов
/ 16 мая 2011

Ваш код более или менее работает для меня. time печатает свой вывод в stderr, поэтому, если вы ищете этот вывод, посмотрите в своем файле files/temp/error-output.txt. stdout pipe $pipes[1] будет содержать только выходные данные программы ./a.

Мое репро:

[edan@edan tmp]$ cat proc.php 

<?php

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

$process = proc_open("time ./a a.out", $descriptorspec, $pipes, $cwd);

echo stream_get_contents($pipes[1]);
fclose($pipes[1]);

?>

[edan@edan tmp]$ php proc.php 

a.out here.

[edan@edan tmp]$ cat /tmp/error-output.txt

real    0m0.001s
user    0m0.000s
sys     0m0.002s
...