1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?php set_time_limit(0); /** * Transfer Files Server to Server using PHP Copy * @link https://shellcreeper.com/?p=1249 */ /* 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"; } ?> |
Leave a reply