AMQPConnection
PHP Manual

AMQPConnection::setVhost

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

AMQPConnection::setVhostSet the amqp virtual host

説明

public bool AMQPConnection::setVhost ( string $vhost )

Sets the virtual host to which to connect on the AMQP broker.

パラメータ

host

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');

?>


AMQPConnection
PHP Manual