Skip to content

Instantly share code, notes, and snippets.

@ludioao
Last active August 29, 2015 17:29
Show Gist options
  • Save ludioao/c34be1747b8f9c8b29a2 to your computer and use it in GitHub Desktop.
Save ludioao/c34be1747b8f9c8b29a2 to your computer and use it in GitHub Desktop.
$zip = new ZipArchive();
$file = "myZipFile.zip";
$dir = "./dst_folder";
$zip->open($file);
if ( $zip->extractTo($dir) ) {
echo "Unzip successfuly";
}
else {
echo "Error on unzip file";
}
$zip->close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment