SNMP::getError
(PHP 5 >= 5.4.0)
SNMP::getError — Get last error message
Description
public string SNMP::getError
( void
)
Returns string with error from last SNMP request.
Return Values
String describing error from last SNMP request.
Examples
Example #1 SNMP::getError() example
<?php
$session = new SNMP(SNMP::VERSION_2c, '127.0.0.1', 'boguscommunity');
var_dump(@$session->get('.1.3.6.1.2.1.1.1.0'));
var_dump($session->getError());
?>
The above example will output:
bool(false) string(26) "No response from 127.0.0.1"
See Also
- SNMP::getErrno() - Get last error code
- Функция 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