PHP code example of meklis / telnet-over-proxy

1. Go to this page and download the library: Download meklis/telnet-over-proxy 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/ */

    

meklis / telnet-over-proxy example snippets

 


$telnet = new Meklis\TelnetOverProxy\Telnet("10.0.0.1", "23", 30);
$telnet->connectOverProxy("tcp://127.0.0.1:3333");

...