-
-
Save aksisoftsby/77e8aae19ab9f4b07da214b73f736c51 to your computer and use it in GitHub Desktop.
Download a directory from an FTP Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // ftp_sync - copy directory and file structure | |
| // based on http://www.php.net/manual/es/function.ftp-get.php#90910 | |
| // main function witch is called recursivly | |
| function ftp_sync($dir, $conn_id) { | |
| if ($dir !== '.') { | |
| if (ftp_chdir($conn_id, $dir) === FALSE) { | |
| echo 'Change dir failed: ' . $dir . PHP_EOL; | |
| return; | |
| } | |
| if (!(is_dir($dir))) { | |
| mkdir($dir); | |
| } | |
| chdir($dir); | |
| } | |
| $contents = ftp_nlist($conn_id, '.'); | |
| foreach ($contents as $file) { | |
| if ($file == '.' || $file == '..') { | |
| continue; | |
| } | |
| if (@ftp_chdir($conn_id, $file)) { | |
| ftp_chdir($conn_id, ".."); | |
| ftp_sync($file, $conn_id); | |
| } else { | |
| ftp_get($conn_id, $file, $file, FTP_BINARY); | |
| } | |
| } | |
| ftp_chdir($conn_id, '..'); | |
| chdir('..'); | |
| } | |
| // your settings | |
| $ftp_server = 'yourdomin.tld'; | |
| $user = 'user'; | |
| $password = 'password'; | |
| $document_root = 'html'; | |
| $sync_path = 'dir2copy'; | |
| // start copying | |
| echo '<pre>' . PHP_EOL; | |
| echo 'start copying....' . PHP_EOL; | |
| $conn_id = ftp_connect($ftp_server); | |
| if ($conn_id) { | |
| $login_result = ftp_login($conn_id, $user, $password); | |
| if ($login_result) { | |
| ftp_chdir($conn_id, $document_root); | |
| ftp_sync($sync_path, $conn_id); | |
| ftp_close($conn_id); | |
| } else { | |
| echo 'login to server failed!' . PHP_EOL; | |
| } | |
| } else { | |
| echo 'connection to server failed!'; | |
| } | |
| echo 'done.' . PHP_EOL; | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment