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