0

次のようにコードで pcntl 拡張機能を使用しました。ハンドラーを SIGUSR1 などのシグナルにバインドし、シグナルをアプリケーションに送信するスクリプトを作成しました。

pcntl_signal(SIGUSR1, function ($signo){
 echo 'Signal:' . $signo . PHP_EOL; 
});

そして、私はそのようなエラーがあります:

stream_get_contents(): Failure 'would block' (-9) 

また、ssh (関数の一部) によるリモート コマンド実行のコードもあります。

  $stream = ssh2_exec(
    $this->connection,
    $command,
    $options['pty'],
    $options['env'],
    $options['width'],
    $options['height'],
    $options['width_height_type']
  );
  if ($options['waitOut']) {
    stream_set_blocking($stream, true);

ここでシグナルが発生すると、次のエラーが発生します: "Failure 'would block' (-9)"

    $output = stream_get_contents($stream);
  }
  fclose($stream);
  return $output; 

これを回避する方法はありますか?

4

1 に答える 1

0

さて、stream_get_contents 関数は unix シグナルでは正常に動作しません。「stream_get_contents」の代わりに次のコードを使用します

  $finisher = "SSH_FINISHED_COMMAND";
  $command .= " && echo \"{$finisher}\"";
  $command  = str_replace(' &&' , ' 2>&1 &&', $command);
  $stream = ssh2_exec(
      $this->connection,
      $command,
      $options['pty'],
      $options['env'],
      $options['width'],
      $options['height'],
      $options['width_height_type']
  );
  stream_set_blocking($stream, true);
  $block = false;
  $isFinished = false;
  while (! feof($stream) && ! $isFinished){
       $block = fread($stream, 256);
       $output .= $block;
       $isFinished = substr($output , -strlen($finisher)-2) == $finisher . '\n';           
  }
  $output = str_replace($finisher . "\n", '', $output);
  fclose($stream);
  return $output; 
于 2013-04-04T10:47:01.100 に答える