CakeFest 2024: The Official CakePHP Conference

SNMP::close

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

SNMP::closeClose SNMP session

Descrizione

public SNMP::close(): bool

Frees previously allocated SNMP session object.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Restituisce true in caso di successo, false in caso di fallimento.

Esempi

Example #1 SNMP::close() example

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

Vedere anche:

add a note

User Contributed Notes

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