Skip to content

Instantly share code, notes, and snippets.

@sohan5005
Forked from damienalexandre/tool.php
Last active March 10, 2019 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sohan5005/a8cde5c09976b965e360db0eebb496b7 to your computer and use it in GitHub Desktop.
Save sohan5005/a8cde5c09976b965e360db0eebb496b7 to your computer and use it in GitHub Desktop.
Download large file from the web via php
<?php
/**
* Download a large distant file to a local destination.
*
* This method is very memory efficient :-)
* The file can be huge, PHP doesn't load it in memory.
*
* /!\ Warning, the return value is always true, you must use === to test the response type too.
*
* @author dalexandre
* @param string $url
* The file to download
* @param ressource $dest
* The local file path or ressource (file handler)
* @return boolean true or the error message
*/
function downloadDistantFile( $url, $dest ) {
$options = array(
CURLOPT_FILE => is_resource($dest) ? $dest : fopen($dest, 'w'),
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_URL => $url,
CURLOPT_FAILONERROR => true, // HTTP code > 400 will throw curl error
);
$ch = curl_init();
curl_setopt_array($ch, $options);
$return = curl_exec($ch);
if( $return === false ) {
return curl_error($ch);
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment