SNMP::close

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

SNMP::closeClose SNMP session

Descrição

public SNMP::close ( ) : bool

Frees previously allocated SNMP session object.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Exemplos

Exemplo #1 SNMP::close() example

<?php
  $session 
= new SNMP(SNMP::VERSION_1"127.0.0.1""public");
  
# ...
  # get, walk, etc goes here
  # ...
  
$session->close();
?>

Veja Também

add a note add a note

User Contributed Notes

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