AMQPConnection
PHP Manual

AMQPConnection::isConnected

(PECL amqp >= Unknown)

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

Açıklama

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.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Örnekler

Örnek 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.');
}

?>


AMQPConnection
PHP Manual