Skip to content

Instantly share code, notes, and snippets.

@grim-reapper
Forked from sarathlal-old/transfer-copy.php
Created October 9, 2018 07:29
Show Gist options
  • Select an option

  • Save grim-reapper/f83a022adf073943f16c4be594e675e4 to your computer and use it in GitHub Desktop.

Select an option

Save grim-reapper/f83a022adf073943f16c4be594e675e4 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