(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
AMQPConnection::connect — Establish a connection with the AMQP broker.
This method will initiate a connection with the AMQP broker.
この関数にはパラメータはありません。
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例1 AMQPConnection::connect() example
<?php
/* Create a new connection */
$cnn = new AMQPConnection();
// set the login details
$cnn->setLogin('mylogin');
$cnn->setPassword('mypass');
if ($cnn->connect()) {
echo "Established a connection to the broker";
}
else {
echo "Cannot connect to the broker";
}
?>