Skip to content

Instantly share code, notes, and snippets.

@shyamsalimkumar
Last active December 18, 2015 08:09
Show Gist options
  • Save shyamsalimkumar/5752362 to your computer and use it in GitHub Desktop.
Save shyamsalimkumar/5752362 to your computer and use it in GitHub Desktop.
PHP - Download & save a remote image on your server
function downloadFromRemote($imageUrl = '', $saveFilePath) {
$image = file_get_contents($imageUrl);
return file_put_contents($saveFilePath, $image); //save the image on local server
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment