AMQPConnection
PHP Manual

AMQPConnection::connect

(No version information available, might only be in SVN)

AMQPConnection::connectEstablish a connection with the AMQP broker.

Описание

public bool AMQPConnection::connect ( void )

This method will initiate a connection with the AMQP broker.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Примеры

Пример #1 AMQPConnection::connect() example

<?php

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

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

if (
$cnn->connect()) {
    echo 
"Established a connection to the broker";
}
else {
    echo 
"Cannot connect to the broker";
}


?>


AMQPConnection
PHP Manual