snmpget
(PHP3 , PHP4)
snmpget ---&">nbsp; 取得SNMP物件
语法 : string snmpget (string hostname, string community, string object_id [, int timeout [, int retries]])
说明 :
成功则传回SNMP物件,错误则传回false。
snmpget( )用来读取参数 object_id指定的SNMP物件的值,SNMP代理人(agent)是由参数 hostname来指定,参数 community指定读取公众(read community)。
Example :
<?php
$syscontact = snmpget("127.0.0.1", "public", "system.SysContact.0");
?>
时间: 2024-09-29 22:12:17