php-ftp-client icon indicating copy to clipboard operation
php-ftp-client copied to clipboard

:package: Provides helper classes and methods to manage FTP files in an OOP way.

Results 5 php-ftp-client issues
Sort by recently updated
recently updated
newest added

The native PHP FTP extension contains the `ftp_fget()` function, which allows you to download a file into any open stream. In some cases this is more preferable than into named...

feature request

hi can you create a method that call keepAlive every 5 second ? ``` $client->keepAlive(); ```

[FtpClientException] - ftp_nlist(): php_connect_nonb() failed: Operation now in progress (115) i try passive mode on/off & SSL off/on but did not work

As title, the `FtpSSLConnection` class is based on the [ftp_ssl_connect](https://www.php.net/manual/en/function.ftp-ssl-connect.php). But it's only available on the explicit mode. To support the FTP SSL connection with the implicit mode, it can...

feature request

Tried to remove a directory structure like this: -root --content ----file1 ----file2 ----subdir ------file4 ------file3 and the method FtpClient::removeDir(directory) doesn't jumps in to the subdir and as a result the...