AMQPConnection
PHP Manual

AMQPConnection::setHost

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

AMQPConnection::setHostSet the amqp host.

説明

public bool AMQPConnection::setHost ( string $host )

This method will set the hostname used to connect to the AMQP broker.

パラメータ

host

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

?>


AMQPConnection
PHP Manual