-
-
Save sohan5005/a8cde5c09976b965e360db0eebb496b7 to your computer and use it in GitHub Desktop.
Download large file from the web via php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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