AMQPConnection
PHP Manual

AMQPConnection::setLogin

(PECL amqp >= Unknown)

AMQPConnection::setLoginSet the login.

说明

public bool AMQPConnection::setLogin ( string $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.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

错误/异常

Throws an AMQPConnectionException if login is longer then 32characters.

范例

Example #1 AMQPConnection::setLogin() example

<?php

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

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

?>


AMQPConnection
PHP Manual