(PECL amqp >= Unknown)
AMQPConnection::setLogin — Set the login.
$login
)This method will set the login string used to connect to the AMQP broker.
login
The login string used to authenticate with the AMQP broker.
Retorna TRUE
em caso de sucesso ou FALSE
em caso de falha.
Throws an AMQPConnectionException if
login
is longer then 32characters.
Exemplo #1 AMQPConnection::setLogin() example
<?php
/* Create a new connection */
$cnn = new AMQPConnection();
// set the login
$cnn->setLogin('myusername');
?>