Skip to content

Instantly share code, notes, and snippets.

@joshhartman
Created August 26, 2016 16:30
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 joshhartman/56f02c934f056bf0eb3d66771324c5c4 to your computer and use it in GitHub Desktop.
Save joshhartman/56f02c934f056bf0eb3d66771324c5c4 to your computer and use it in GitHub Desktop.
Extract ZIP file to current directory
<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === 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