AMQPConnection
PHP 手册

AMQPConnection::disconnect

(PECL amqp >= Unknown)

AMQPConnection::disconnectCloses the connection with the AMQP broker.

说明

public bool AMQPConnection::disconnect ( void )

This method will close an open connection with the AMQP broker.

参数

void

返回值

Returns true if connection was successfully closed, false otherwise.

范例

Example #1 AMQPConnection::disconnect() example

<?php

/* Create a new connection */
$cnn = new AMQPConnection();

// set the login details
$cnn->setLogin('mylogin');
$cnn->setPassword('mypass');

if (!
$cnn->connect()) {
    throw new 
Exception('Could not connect');
}

// do something interesting

if (!$cnn->disconnect()) {
    throw new 
Exception('Could not disconnect');
}

?>


AMQPConnection
PHP 手册