PHP code example of nicko170 / php-snmp

1. Go to this page and download the library: Download nicko170/php-snmp library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nicko170 / php-snmp example snippets


use Nicko170\PhpSnmp\SNMP;

$device = new SNMP(host: '103.2.119.110', community: 'public', version: '2c');
$device->system()->name();
bash
composer