Skip to content

Instantly share code, notes, and snippets.

@evansmwendwa
Created May 21, 2018 17:45
Show Gist options
  • Save evansmwendwa/9e035c216477481ecfc9231ba616ca48 to your computer and use it in GitHub Desktop.
Save evansmwendwa/9e035c216477481ecfc9231ba616ca48 to your computer and use it in GitHub Desktop.
<?php
function http_get_file($remote_url, $local_file) {
$fp = fopen($local_file, 'w');
$cp = curl_init($remote_url);
curl_setopt($cp, CURLOPT_FILE, $fp);
$buffer = curl_exec($cp);
curl_close($cp);
fclose($fp);
return true;
}
$src = "http://www.domain.com/remotefile.zip";
$dsr = "remotefile.zip";
echo http_get_file($src, $dsr );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment