rivman / php-ftp-client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-fto-client

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

Copyright

© 2021 BABA Tumise s.r.o.

About

License:Other


Languages

Language:PHP 100.0%