1. Go to this page and download the library: Download rjkip/ftp-php 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/ */
rjkip / ftp-php example snippets
FtpPhp\FtpClient;
use FtpPhp\FtpException;
$ftp = new FtpClient;
$ftp->connect($host);
$ftp->login($username, $password);
$ftp = new FtpClient("ftp://user:password@host/path");