PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

AMQPConnection::__construct

(PECL amqp >= Unknown)

AMQPConnection::__constructCreate an instance of AMQPConnection

Description

AMQPConnection::__construct ([ array $credentials = array() ] )

Creates an AMQPConnection instance representing a connection to an AMQP broker.

Parameters

credentials

The credentials is an optional array of credential information for connecting to the AMQP broker.

Supported indexes
key Description Default value
host The host to connect too

Note: Max 32 characters

amqp.host
port Port on the host amqp.port
vhost The virtual host on the host

Note: Max 32 characters

amqp.vhost
login The login name to use.

Note: Max 32 characters

amqp.login
password Password

Note: Max 32 characters

amqp.password

All other keys will be ignored.

Return Values

An AMQPConnection object.

Errors/Exceptions

Throws AMQPException exception on parameter parsing failures, and option errors.

Examples

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'
));

?>

Notes

Note:

A connection will not be established untill AMQPConnection::connect is called.

PHP Manual