2017-01-12 16 views
3

次のエラーイベントが発生しました。特定のエラーを特定するにはどうすればよいですか? ConnectionInterface、React\Socket\Connectionの実装を見てみる特定のReactPHPソケットエラーを取り出す方法は?

<?php 
$loop = Factory::create(); 
$socket = new React\Socket\Server($loop); 
$socket->on('connection', function (\React\Socket\ConnectionInterface $stream){ 

    $stream->on('data', function($rsp) { 
     echo('on data'); 
    }); 

    $stream->on('close', function($conn) { 
     echo('on close'); 
    }); 

    $stream->on('error', function($conn) use ($stream) { 
     echo('on error'); 
     // How do I determine the specific error? 
     $stream->close(); 
    }); 

    echo("on connect"); 
}); 

$socket->listen('0.0.0.0',1337); 
$loop->run(); 

答えて

3

、それが使用する、React\Stream\Stream延びemit()onに登録されたコールバックトリガする)、このように最初の引数を https://github.com/reactphp/stream/blob/c3647ea3d338ebc7332b1a29959f305e62cf2136/src/Stream.php#L61

$that = $this; 
$this->buffer->on('error', function ($error) use ($that) { 
    $that->emit('error', array($error, $that)); 
    $that->close(); 
}); 

をその関数はエラーであり、第2のものは$stream

$stream->on('error', function($error, $stream) { 
    echo "an exception happened: $error"; 
    // $error will be an instance of Throwable then 
    $stream->close(); 
}); 
関連する問題