PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Juraj Puchký   PHP FTP Client class   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: PHP FTP Client class
Send and receive files from a FTP server
Author: By
Last change:
Date: 2 years ago
Size: 711 bytes
 

Contents

Class file image Download

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

&copy; 2021 BABA Tumise s.r.o.