Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ThemeMetric/b8b86d0a3b541fb1849cf0481f953d79 to your computer and use it in GitHub Desktop.
Save ThemeMetric/b8b86d0a3b541fb1849cf0481f953d79 to your computer and use it in GitHub Desktop.
Copy and download file from remote server to local
<?php
if(!@copy('https://sajjadhossain.me/file.zip','./somefile.zip'))
// change the remote server link to your own file link
{
$errors= error_get_last();
echo "COPY ERROR: ".$errors['type'];
echo "<br />\n".$errors['message'];
} else {
echo "File copied from remote!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment