Windows bir proc_open Yakalama stderr çıkışı ()

3 Cevap

Ben proc_open çağırarak ediyorum () ve stderr'e yazılı sürecin çıkış yakalamak edemez:

$curFolder = getcwd();
$procDescriptor = array( 2 => array( "pipe", "w" ) );
$cmd = "MyApp.exe -f optimization.csv";
$process = proc_open( $cmd, $procDescriptor, $pipes, $curFolder );

if( is_resource( $process ) == true ) 
{
  $procStatus = proc_get_status( $process );

  while( $procStatus['running'] === true )
  {
    if( !feof( $pipes[2] ) )
    {
      $logLine = fgets( $pipes[2] );
      echo( "Read >${logLine}<" );
    }
    sleep( 1 );
  }
}

Programı) (fgets asılı. Ben komut satırından, her eser, yani gelen programı çalıştırırsanız orada stderr'e yazılı bir şeydir (ve ben de aynı sonucu ile stdout kullanarak denedim). Ben Windows komut dosyası koşuyorum - Linux üzerinde aynı komut dosyası sorunsuz çalışır.

3 Cevap

Sen sonsuz bir döngü var.

Eğer proc_get_status çağrısı () inside döngü koymak sürece $ procStatus ['çalışan'] asla değişmeyecek. PHP, JavaScript gibi dinamik özelliklere sahip değildir.

Ben satırı eklendi

$procStatus = proc_get_status( $process );

doğru uykudan sonra () ve iyi çalışıyor.

Kimden proc_open() docs:

<?php
$descriptorspec = array(
   0 => array("pipe", "r"),  // stdin is a pipe that the child will read from
   1 => array("pipe", "w"),  // stdout is a pipe that the child will write to
   2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
);

$cwd = '/tmp';
$env = array('some_option' => 'aeiou');

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

if (is_resource($process)) {
    // $pipes now looks like this:
    // 0 => writeable handle connected to child stdin
    // 1 => readable handle connected to child stdout
    // Any error output will be appended to /tmp/error-output.txt

    fwrite($pipes[0], '<?php print_r($_ENV); ?>');
    fclose($pipes[0]);

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

    // It is important that you close any pipes before calling
    // proc_close in order to avoid a deadlock
    $return_value = proc_close($process);

    echo "command returned $return_value\n";
}
?>

Eğer boş bulursanız belki süreç stderr'e bildirmez

Eğer veri tüketmek bile ben, stdin ve stdout akışları ekleyerek de tavsiye ederim; Bazı C kütüphaneleri akışları orada yoksa bir telaş içine alabilir ve çıkış erken (glibc) veya potansiyel kama (MS libc'nin bazı sürümleri) ya.