PHP code example of daanwilson / php-sftp-client

1. Go to this page and download the library: Download daanwilson/php-sftp-client 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/ */

    

daanwilson / php-sftp-client example snippets


$ftp = new \SfpClient\SftpClient();
$ftp->connect($host, true, 22);
$ftp->login($login, $password);

composer 

git clone [email protected]:daanwilson/php-sftp-client.git