(PECL amqp >= Unknown)
AMQPConnection::reconnect — Closes any open connection and creates a new connection with the AMQP broker.
This method will close any open connections and initiate a new connection with the AMQP broker.
此函数没有参数。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #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";
}
?>