SNMP::close

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

SNMP::closeClose SNMP session

Beschreibung

public SNMP::close ( ) : bool

Frees previously allocated SNMP session object.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Gibt bei Erfolg true zurück. Im Fehlerfall wird false zurückgegeben.

Beispiele

Beispiel #1 SNMP::close() example

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

Siehe auch

add a note add a note

User Contributed Notes

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