SNMP::close
(PHP 5 >= 5.4.0)
SNMP::close — Close SNMP session
Description
public bool SNMP::close
( void
)
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
- SNMP::__construct() - Creates SNMP instance representing session to remote SNMP agent
- Функция SNMP::close() - Close SNMP session
- Функция SNMP::__construct() - Creates SNMP instance representing session to remote SNMP agent
- Функция SNMP::get() - Fetch an SNMP object
- Функция SNMP::getErrno() - Get last error code
- Функция SNMP::getError() - Get last error message
- SNMP::getnext
- Функция SNMP::set() - Set the value of an SNMP object
- Функция SNMP::setSecurity() - Configures security-related SNMPv3 session parameters
- Функция SNMP::walk() - Fetch SNMP object subtree
Коментарии
404 Not Found