PHP Doku:: Determine if the AMQPConnection object is still connected to the broker. - amqpconnection.isconnected.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteAMQPThe AMQPConnection classAMQPConnection::isConnected

Ein Service von Reinhard Neidl - Webprogrammierung.

The AMQPConnection class

<<AMQPConnection::disconnect

AMQPConnection::reconnect>>

AMQPConnection::isConnected

(PECL amqp >= Unknown)

AMQPConnection::isConnectedDetermine if the AMQPConnection object is still connected to the broker.

Beschreibung

public void AMQPConnection::isConnected ( void )

This method will check whether the connection to the AMQP broker is still valid. It does so by checking the return status of the last command.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns true if connected, false otherwise

Beispiele

Beispiel #1 AMQPConnection::isConnected() example

<?php

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

/* Check that connection is working */
if (!$cnn->isConnected()) {
    die(
'The connection to the server was not established.');
}

?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)