AMQPConnection
PHP Manual

AMQPConnection::setLogin

(PECL amqp >= Unknown)

AMQPConnection::setLoginSet the login.

Descrição

public bool AMQPConnection::setLogin ( string $login )

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

Parâmetros

login

The login string used to authenticate with the AMQP broker.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em caso de falha.

Erros

Throws an AMQPConnectionException if login is longer then 32characters.

Exemplos

Exemplo #1 AMQPConnection::setLogin() example

<?php

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

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

?>


AMQPConnection
PHP Manual