AMQPConnection::setLogin

(PECL amqp >= Unknown)

AMQPConnection::setLoginSet the login.

Beskrivelse

public bool AMQPConnection::setLogin ( string $login )

This method will set the login string used to connect to the AMQP broker.

Parametre

login

The login string used to authenticate with the AMQP broker.

Returnerings Værdier

Returns TRUE on success or FALSE on failure.

Fejl/Undtagelser

Throws an AMQPConnectionException if login is longer then 32characters.

Eksempler

Eksempel #1 AMQPConnection::setLogin() example

<?php

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

// set the login
$cnn->setLogin('myusername');

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top