Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created June 24, 2015 19:57
Show Gist options
  • Select an option

  • Save Nav-Appaiya/0c5471de984e4adc5152 to your computer and use it in GitHub Desktop.

Select an option

Save Nav-Appaiya/0c5471de984e4adc5152 to your computer and use it in GitHub Desktop.
PHP Unzipper in a few lines, very sweet!
<?php
$unzip = new ZipArchive;
$out = $unzip->open('wordpress-4.2.2-nl_NL.zip');
if ($out === TRUE) {
$unzip->extractTo(getcwd());
$unzip->close();
echo 'File unzipped';
} else {
echo 'Something went wrong?';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment