Skip to content

Instantly share code, notes, and snippets.

@antelove19
Forked from sarathlal-old/transfer-copy.php
Created January 25, 2018 20:54
Show Gist options
  • Save antelove19/d8feefcd9feb335ca44abd1b61cc07dc to your computer and use it in GitHub Desktop.
Save antelove19/d8feefcd9feb335ca44abd1b61cc07dc to your computer and use it in GitHub Desktop.
Transfer files from server to server using PHP `copy()` function.
<?php
// Insert this file on server and go to the path from browser.
set_time_limit(0); //Unlimited max execution time
/* Source File URL */
$remote_file_url = 'http://origin-server-url/files.zip';
/* New file name and path for this file */
$local_file = 'files.zip';
/* Copy the file from source url to server */
$copy = copy( $remote_file_url, $local_file );
/* Add notice for success/failure */
if( !$copy ) {
echo "Doh! failed to copy $file...\n";
}
else{
echo "WOOT! success to copy $file...\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment