(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
AMQPConnection::setLogin — Set the login.
This method will set the login string used to connect to the AMQP broker.
The login string used to authenticate with the AMQP broker.
成功した場合に TRUE を、失敗した場合に FALSE を返します。
Throws an AMQPConnectionException if login is longer then 32characters.
例1 AMQPConnection::setLogin() example
<?php
/* Create a new connection */
$cnn = new AMQPConnection();
// set the login
$cnn->setLogin('myusername');
?>