Skip to content

Instantly share code, notes, and snippets.

@irazasyed
Created June 26, 2013 18:57
Show Gist options
  • Save irazasyed/5870360 to your computer and use it in GitHub Desktop.
Save irazasyed/5870360 to your computer and use it in GitHub Desktop.
PHP: This code allows you to Unzip a ZIP file
<?php
function unzip($location,$new_location){
if(exec("unzip $location",$arr)){
mkdir($new_location);
for($i = 1;$i< count($arr);$i++){
$file = trim(preg_replace("~inflating: ~","",$arr[$i]));
copy($location."/".$file,$new_location."/".$file);
unlink($location."/".$file);
}
return true;
}
return false;
}
// usage of this code
if(unzip('ziped_files/test.zip','unziped_files/newfile')){
echo 'Successfully unzipped!';
}else{
echo 'Error while processing your file!';
}
?>
@menkrep1337
Copy link

thanks

@fellipegpbotelho
Copy link

Thanks man

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment