baba / php-ftp-client
Installs: 1 039
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=7.3
- nicolab/php-ftp-client: ^1.5
Provides
- baba/php-ftp-client: 1.0.1
This package is auto-updated.
Last update: 2025-03-07 01:11:30 UTC
README
Simple FTP Client wrapper
Install
composer require baba/php-ftp-client
Example
use BABA\FTP\FtpClient;
$client = new FtpClient($hostname, $username, $password, $rootFolder);
$client->login();
$files = $client->listFiles('/');
foreach ($files as $file) {
$client->downloadFile($file, './file.txt');
}
$client->disconnect();
License
GPL-2.0-only
Authors
Juraj Puchký - BABA Tumise s.r.o. info@baba.bj
https://www.seoihned.cz - SEO optilamizace
https://www.baba.bj - Tvorba webových stránek
https://www.webtrace.cz - Tvorba portálů a ecommerce b2b/b2c (eshopů) na zakázku
Log
1.0.0 - first release 1.0.1 - added support passive mode
Copyright
© 2021 BABA Tumise s.r.o.