(PECL amqp >= Unknown)
AMQPConnection::__construct — Create an instance of AMQPConnection
$credentials
= array()
] )Creates an AMQPConnection instance representing a connection to an AMQP broker.
credentials
The credentials
is an optional array of credential information for connecting to the AMQP
broker.
key | Description | Default value |
---|---|---|
host | The host to connect too
|
amqp.host |
port | Port on the host | amqp.port |
vhost | The virtual host on the host
|
amqp.vhost |
login | The login name to use.
|
amqp.login |
password | Password
|
amqp.password |
All other keys will be ignored.
An AMQPConnection object.
Throws AMQPException exception on parameter parsing failures, and option errors.
Example #1 AMQPConnection::__construct() example
<?php
/* Create a connection using the INI values */
$connection1 = new AMQPConnection();
/* Specifying all keys */
$connection2 = new AMQPConnection(array(
'host' => 'example.host',
'vhost' => '/',
'port' => 5763,
'login' => 'user',
'password' => 'password'
));
?>
Note:
A connection will not be established until AMQPConnection::connect() is called.
pinepain at gmail dot com (2012-12-27 17:32:54)
It is not documented here, but additional key supported for AMQP
Version => 1.0.9
Revision => $Revision: 327551 $
AMQP protocol version => 0-9-1
librabbitmq version => 0.2.0
timeout Timeout to wait for a new messages float amqp.timeout
bolo at nospam dot autistici dot org (2011-09-27 03:45:00)
A simply function that help manage connections to AMQP server.
It works fine in debian wheezy php 5.3.8.
Change Login & Password value at your plasure.
(Host will be the default value = 127.0.0.1).
<?php
function amqp_connection() {
$connection = new AMQPConnection();
$connection->setLogin('guest');
$connection->setPassword('guest');
$connection->connect();
if (!$connection->isConnected()) {
echo "Cannot connect to the broker";
}
return $connection;
}
//Next manage the connection with $connection var
// function ...
// $connection=amqp_connection();
// ...
?>