AMQPConnection
PHP Manual

AMQPConnection::reconnect

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

AMQPConnection::reconnectCloses any open connection and creates a new connection with the AMQP broker.

説明

public bool AMQPConnection::reconnect ( void )

This method will close any open connections and initiate a new connection with the AMQP broker.

パラメータ

この関数にはパラメータはありません。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 AMQPConnection::reconnect() example

<?php

/* Create a new connection */
$cnn = new AMQPConnection();

// set the login details
$cnn->setLogin('mylogin');
$cnn->setPassword('mypass');

$cnn->connect();

// do something interesting


// ensure we have a valid connection
if (!$cnn->reconnect()) {
    echo 
"Could not reconnect to server";
}

?>


AMQPConnection
PHP Manual