Created
March 23, 2012 10:36
-
-
Save vrushank-snippets/2169442 to your computer and use it in GitHub Desktop.
PHP : Unzip zip files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
change line #6
die ('Could not open archive');