Php/docs/snmp.close

From Get docs

SNMP::close

(PHP 5 >= 5.4.0, PHP 7)

SNMP::closeClose SNMP session


Description

public SNMP::close ( ) : bool

Frees previously allocated SNMP session object.


Return Values

Returns TRUE on success or FALSE on failure.


Examples

Example #1 SNMP::close() example


<?php  $session = new SNMP(SNMP::VERSION_1, "127.0.0.1", "public");  # ...  # get, walk, etc goes here  # ...  $session->close();?>

See Also