| Ratings |   | Unique User Downloads |   | Download Rankings | 
| Not yet rated by the users |  | Total: 365  |  | All time:  6,864 This week: 23  | 
 | 
| Description |   | Author  | 
This class can access FTP servers to transfer files. 
 
It can connect to a given FTP server using a given user name and password and can perform several types of operations with files and directories. Currently it can: 
 
- Get the list of files of the current directory. 
- Get the current directory. 
- Change the current directory to a given path. 
- Create one or more server directories recursively with a given path. 
- Check if a given file or a directory exists. 
- Download a file to a local directory with a given path name. 
- Rename a given file. 
- Change permissions of a given file. 
- Delete a given file. 
- Upload a list of local files to the server.  |  | 
  | 
 | 
Innovation award
   Nominee: 6x |  
 
  | 
Recommendations
Example
<?php 
require_once 'classes/FTP.php'; 
 
$ftp = new FTP('ftp.myserver.com', 'username', 'password',false); 
 
$ftp->mkdir('somedir'); 
$ftp->chdir('somedir'); 
 
 
 | 
 
Details
PHP-FTP-Class
PHP FTP is a simple and convenient FTP adapter for processing FTP requests via PHP.
BASIC USAGE
Create a new directory, change into it and upload a file
$ftp = new FTP('ftp.myserver.com', 'username', 'password',false);
$ftp->mkdir('somedir');
$ftp->chdir('somedir');
$ftp->put(['my_local_file.html','my_local_file2.html']);
Download file from a directory
$ftp = new FTP('ftp.myserver.com', 'username', 'password',false);
$ftp->chdir('somedir');
$ftp->get('my_local_file.html', 'file_on_server.html');
 
 
|   | 
Applications that use this package | 
  | 
No pages of applications that use this class were specified.
 If you know an application of this package, send a message to the author to add a link here.