PHP code example of kisphp / php-sftp-client

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

    

kisphp / php-sftp-client example snippets




use Kisphp\ConfigInterface;

class Config implements ConfigInterface
{
    public function getHost()
    {
        return '10.10.0.61';
    }
    
    public function getPort()
    {
        return 22;
    }
    
    public function getUsername()
    {
        return 'vagrant';
    }
    
    public function getPassword()
    {
        return 'vagrant';
    }
}

$s = new SftpConnect(new Config());

$s->sendFile(__DIR__ . '/source.php', 'b.php'); // will return true for success and false for failure

$s->receiveFile('a.php', 'c.php'); // will return true for success and false for failure
json
{
    "isphp/php-sftp-client": "~0.1"
    }
}