• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • SNMP::close()

    (PHP 5 >= 5.4.0, PHP 7)

    Close SNMP session

    说明

    publicSNMP::close(void): bool

    Frees previously allocated SNMP session object.

    返回值

    成功时返回TRUE,或者在失败时返回FALSE

    范例

    Example #1 SNMP::close() example

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

    参见

    • SNMP::__construct() Creates SNMP instance representing session to remote SNMP agent