(PECL amqp >= Unknown)
AMQPExchange::bind — Bind to another exchange
$destination_exchange_name
, string $source_exchange_name
, string $routing_key
)Bind an exchange to another exchange using the specified routing key.
destination_exchange_name
The name of the destination exchange in the binding.
source_exchange_name
The name of the source exchange in the binding.
routing_key
The routing key to use as a binding.
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Throws AMQPExchangeException on failure.
Throws AMQPChannelException if the channel is not open.
Throws AMQPConnectionException if the connection to the broker was lost.
maik dot penz at foobugs dot com (2012-11-05 16:01:59)
At least the current version (1.0.7) uses
function bind($exchangeName, $routingKey[, $flags]);