AMQPConnection
PHP Manual

AMQPConnection::setPassword

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

AMQPConnection::setPasswordSet the password.

説明

public bool AMQPConnection::setPassword ( string $password )

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

パラメータ

password

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');

?>


AMQPConnection
PHP Manual