Skip to content

Instantly share code, notes, and snippets.

@alfredbez
Created June 11, 2014 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfredbez/7d73f29c93d060b68cef to your computer and use it in GitHub Desktop.
Save alfredbez/7d73f29c93d060b68cef to your computer and use it in GitHub Desktop.
Lädt und entpackt Github Repo
<?php
set_time_limit(0);
file_put_contents("tmp/download-module.zip", fopen("https://github.com/author/repo/archive/master.zip", 'r'));
$zip = new ZipArchive;
$res = $zip->open('tmp/download-module.zip');
if ($res === TRUE) {
$zip->extractTo('modules/');
$zip->close();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment