Created
May 21, 2018 17:45
-
-
Save evansmwendwa/9e035c216477481ecfc9231ba616ca48 to your computer and use it in GitHub Desktop.
This file contains 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 | |
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