Skip to content

Instantly share code, notes, and snippets.

@raihan-uddin
Forked from vrushank-snippets/Unzip zip files
Created March 14, 2020 09:43
Show Gist options
  • Save raihan-uddin/18022a8034bbb3a2e52acd1381f53dcc to your computer and use it in GitHub Desktop.
Save raihan-uddin/18022a8034bbb3a2e52acd1381f53dcc to your computer and use it in GitHub Desktop.
PHP : Unzip zip files
function unzip_file($file, $destination){
// create object
$zip = new ZipArchive() ;
// open archive
if ($zip->open($file) !== TRUE) {
die (’Could not open archive’);
}
// extract contents to destination directory
$zip->extractTo($destination);
// close archive
$zip->close();
echo 'Archive extracted to directory';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment