(PECL amqp >= Unknown)
AMQPConnection::connect — Establish a connection with the AMQP broker.
This method will initiate a connection with the AMQP broker.
This function has no parameters.
Returns TRUE
on success or FALSE
on failure.
Example #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";
}
?>