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