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