PHP code example of juanchosl / ftpclient

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

    

juanchosl / ftpclient example snippets


$connection = new Ftp();

$connection = EngineFactory::getInstance(EnginesEnum::FTP);

$connection->connect("ftp.servername.com", 21);

$connection->login("username", "password");

$connection->setCredentials($absolute_path_to_publickey,$absolute_path_to_privatekey,$private_key_password);