(PHP 4, PHP 5)
snmp_get_quick_print — Holt den aktuellen Wert der quick_print Einstellung der UCD Bibliothek
Gibt den aktuellen Wert von quick_print der UCD Bibliothek zurück. quick_print ist standardmäßig abgeschaltet.
$quickprint = snmp_get_quick_print();
Der obige Funktionsaufruf gibt FALSE zurück, wenn quick_print ausgeschaltet ist und TRUE, wenn quick_print eingeschaltet ist.
Die snmp_get_quick_print() Funktion ist nur bei Verwendung der SNMP Bibliothek verfügbar, jedoch nicht bei Verwendung der Windows SNMP Bibliothek.
Siehe: snmp_set_quick_print() für eine Vollständie Beschreibung was quick_print bewirkt.
This can be used to parse the returned values depending on the quick print setting. For example sysUpTime might look something like this: "Timeticks: (34575334) 4 days, 0:02:33.34", but if quick print is enabled it will be on the form: "4:0:2:33.34". To get the same output you can parse it differently, something like:
if(@ $sysUpTime = snmpget($switch,$community,"system.sysUpTime.0")){
if(snmp_get_quick_print()){
sscanf($sysUpTime, "%d:%d:%d:%d.%d",$day,$hour,$minute,$sec,$ticks);
$sysUpTime = "$day days, $hour:$minute:$sec.$ticks";
}else{
$sysUpTime = ereg_replace("Timeticks: \([0-9]+\) ","",$sysUpTime);
}
}