Skip to content

Instantly share code, notes, and snippets.

@mkj-is
Last active March 30, 2016 14:21
Show Gist options
  • Save mkj-is/4706998 to your computer and use it in GitHub Desktop.
Save mkj-is/4706998 to your computer and use it in GitHub Desktop.
For extracting archives during transferring lots of small files over FTP.
<?php
$zip = new ZipArchive;
$res = $zip->open('Archive.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