Skip to content

Instantly share code, notes, and snippets.

@maxout
Last active August 29, 2015 13:57
Show Gist options
  • Save maxout/e0503cf03de8abdb965e to your computer and use it in GitHub Desktop.
Save maxout/e0503cf03de8abdb965e to your computer and use it in GitHub Desktop.
unzip file
$zip = new ZipArchive;
$res = $zip->open('sw.zip');
if ($res === TRUE) {
$zip->extractTo('./');
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment