snmp_get_valueretrieval
(PHP 4 >= 4.3.3, PHP 5, PHP 7, PHP 8)
snmp_get_valueretrieval — SNMP の値が返される方法を返す
説明
snmp_get_valueretrieval(): int
パラメータ
この関数にはパラメータはありません。
戻り値
OR でつないだ定数 ( SNMP_VALUE_LIBRARY
あるいは
SNMP_VALUE_PLAIN
)
に、場合によって SNMP_VALUE_OBJECT を組み合わせて返します。
例
例1 snmp_get_valueretrieval() の使用法
<?php
$ret = snmpget('localhost', 'public', 'IF-MIB::ifName.1');
if (snmp_get_valueretrieval() & SNMP_VALUE_OBJECT) {
echo $ret->value;
} else {
echo $ret;
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google