AMQPConnection::setLogin
(PECL amqp >= Unknown)
AMQPConnection::setLogin — Set the login.
Descrierea
public bool AMQPConnection::setLogin
( string
$login
)This method will set the login string used to connect to the AMQP broker.
Parametri
-
login -
The login string used to authenticate with the AMQP broker.
Valorile întoarse
Întoarce valoarea TRUE în cazul
succesului sau FALSE în cazul eșecului.
Erori/Excepții
Throws an AMQPConnectionException if
login is longer then 32characters.
Exemple
Example #1 AMQPConnection::setLogin() example
<?php
/* Create a new connection */
$cnn = new AMQPConnection();
// set the login
$cnn->setLogin('myusername');
?>
There are no user contributed notes for this page.
