Skip to content

Instantly share code, notes, and snippets.

@co3k
Created May 14, 2010 11:48
Show Gist options
  • Save co3k/401054 to your computer and use it in GitHub Desktop.
Save co3k/401054 to your computer and use it in GitHub Desktop.
<?php
$url = 'http://co3k.test.s3.amazonaws.com/opAloePlugin-1.0.0.tgz';
$gp = gzopen($url, 'rb');
$fp = fopen($argv[1], 'wb');
stream_copy_to_stream($gp, $fp);
fclose($fp);
$binary = file_get_contents($argv[1]);
file_put_contents($argv[2], $binary);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment