SAMConnection::disconnect()

(no version information, might be only in CVS)

SAMConnection::disconnect() --  Disconnects from a Messaging Server

Description

Calling the "disconnect" method on a SAMConnection object disconnects the PHP script from a messaging server. No messages can be sent or received after a connection has been disconnected.

class SAMConnection {

bool disconnect ( void )

}

Examples

Example 1. Disconnecting from a Messaging Server

<?php

$conn
->disconnect();

?>