Skip to content

Instantly share code, notes, and snippets.

Created November 16, 2012 00:46
Show Gist options
  • Save anonymous/0893a7ec908ff508aac6 to your computer and use it in GitHub Desktop.
Save anonymous/0893a7ec908ff508aac6 to your computer and use it in GitHub Desktop.
private function download($url)
{
$this->temp_file = tempnam(sys_get_temp_dir(), $this->temp_file_prefix);
$src = fopen($url, 'r');
$dest = fopen($this->temp_file, 'w+');
stream_copy_to_stream($src, $dest);
return $this->temp_file;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment