SNMP::getnextFetch an SNMP object which follows the given object id Beschreibung
public mixed SNMP::getnext
( mixed
$object_id
)
Fetch an SNMP object that follows specified Parameter-Liste
If
Rückgabewerte
Returns SNMP objects requested as string or array
depending on Fehler/Exceptions
This method do not throw any exceptions by default.
To enable throwing an SNMPException exception when some of library errors occure
user should set BeispieleBeispiel #1 Single SNMP object Single SNMP object may be requested in two ways: as string resulting string return value or as single-element array with associative array as output.
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
OID: NET-SNMP-MIB::netSnmpAgentOIDs.8
Array
(
[SNMPv2-MIB::sysObjectID.0] => OID: NET-SNMP-MIB::netSnmpAgentOIDs.8
)
Beispiel #2 Miltiple SNMP objects
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array
(
[SNMPv2-MIB::sysObjectID.0] => OID: NET-SNMP-MIB::netSnmpAgentOIDs.8
[SNMPv2-MIB::sysLocation.0] => STRING: Nowhere
)
Siehe auch
|