Skip to content

Instantly share code, notes, and snippets.

@accessomnath
Created February 24, 2019 12:07
Show Gist options
  • Save accessomnath/3d0896ffcd7c8b011486ea1c36c5e2e4 to your computer and use it in GitHub Desktop.
Save accessomnath/3d0896ffcd7c8b011486ea1c36c5e2e4 to your computer and use it in GitHub Desktop.
Unzip file within the directory
<?php
$unzip = new ZipArchive;
$out = $unzip->open('wordpress.zip');
if ($out === TRUE) {
$unzip->extractTo(getcwd());
$unzip->close();
echo 'File unzipped';
} else {
echo 'Error';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment