PHP.nl

snmp_get_valueretrieval

snmp_get_valueretrieval

Return the method how the SNMP values will be returned

int **snmp_get_valueretrieval**

OR-ed combitantion of constants ( or ) with possible SNMP_VALUE_OBJECT set. SNMP_VALUE_LIBRARY``SNMP_VALUE_PLAIN

**Voorbeeld: Using **

<?php
 $ret = snmpget('localhost', 'public', 'IF-MIB::ifName.1');
 if (snmp_get_valueretrieval() & SNMP_VALUE_OBJECT) {
   echo $ret->value;
 } else {
   echo $ret;
 }
?>

snmp_set_valueretrieval