snmp_set_valueretrieval
Specify the method how the SNMP values will be returned
&reftitle.description;
truesnmp_set_valueretrieval
intmethod
&reftitle.parameters;
method
types
SNMP_VALUE_LIBRARY
The return values will be as returned by the Net-SNMP library.
SNMP_VALUE_PLAIN
The return values will be the plain value without the SNMP type information.
SNMP_VALUE_OBJECT
The return values will be objects with the properties value and type, where the latter
is one of the SNMP_OCTET_STR, SNMP_COUNTER etc. constants. The
way value is returned is based on which one of constants
SNMP_VALUE_LIBRARY, SNMP_VALUE_PLAIN is set.
&reftitle.returnvalues;
&return.true.always;
&reftitle.changelog;
&Version;
&Description;
&return.type.true;
&reftitle.examples;
Using
snmp_set_valueretrieval
4 <-- SNMP_OCTET_STR, see constants
// [value] => lo
// )
snmp_set_valueretrieval(SNMP_VALUE_OBJECT | SNMP_VALUE_PLAIN);
$ret = snmpget('localhost', 'public', 'IF-MIB::ifName.1');
// stdClass Object
// (
// [type] => 4 <-- SNMP_OCTET_STR, see constants
// [value] => lo
// )
snmp_set_valueretrieval(SNMP_VALUE_OBJECT | SNMP_VALUE_LIBRARY);
$ret = snmpget('localhost', 'public', 'IF-MIB::ifName.1');
// stdClass Object
// (
// [type] => 4 <-- SNMP_OCTET_STR, see constants
// [value] => STRING: lo
// )
?>
]]>
&reftitle.seealso;
snmp_get_valueretrieval