update : 2015.11.03
php.shukuma.com

검색:
 
 
Get last error code

SNMP::getErrno

(PHP 5 >= 5.4.0)

SNMP::getErrnoGet last error code

설명

public int SNMP::getErrno ( void )

Returns error code from last SNMP request.

반환값

Returns one of SNMP error code values described in constants chapter.

예제

Example #1 SNMP::getErrno() example

<?php
$session 
= new SNMP(SNMP::VERSION_2c'127.0.0.1''boguscommunity');
var_dump(@$session->get('.1.3.6.1.2.1.1.1.0'));
var_dump($session->getErrno() == SNMP::ERRNO_TIMEOUT);
?>

위 예제의 출력:

bool(false)
bool(true)

참고