PHP Doku:: Establish a connection with the AMQP broker. - amqpconnection.connect.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The AMQPConnection class

<<The AMQPConnection class

AMQPConnection::__construct>>

AMQPConnection::connect

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

AMQPConnection::connectEstablish a connection with the AMQP broker.

Beschreibung

public boolean AMQPConnection::connect ( void )

This method will initiate a connection with the AMQP broker.

Parameter-Liste

void

Rückgabewerte

Returns true if connection was successful, false otherwise.

Beispiele

Beispiel #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()) {
 throw new 
Exception('Could not connect');
}


?>


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",...)