CakeFest 2024: The Official CakePHP Conference

SNMP::getError

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

SNMP::getErrorObtiene el último mensaje de error

Descripción

public SNMP::getError(): string

Devuelve un string con el error de la última solicitud SNMP.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

String describing error from last SNMP request. String que describe el error de la última solicitud SNMP.

Ejemplos

Ejemplo #1 Ejemplo de SNMP::getError()

<?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->getError());
?>

El resultado del ejemplo sería:

bool(false)
string(26) "No response from 127.0.0.1"

Ver también

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top