SNMP::close
(PHP 5 >= 5.4.0, PHP 7)
SNMP::close — Close SNMP session
Описание
public bool SNMP::close
( void
)
Frees previously allocated SNMP session object.
Возвращаемые значения
Возвращает TRUE
в случае успешного завершения или FALSE
в случае возникновения ошибки.
Примеры
Пример #1 SNMP::close() example
<?php
$session = new SNMP(SNMP::VERSION_1, "127.0.0.1", "public");
# ...
# get, walk, etc goes here
# ...
$session->close();
?>
Смотрите также
- 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