Created
June 26, 2013 18:57
-
-
Save irazasyed/5870360 to your computer and use it in GitHub Desktop.
PHP: This code allows you to Unzip a ZIP file
This file contains 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
<?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!'; | |
} | |
?> |
silassare
commented
Oct 15, 2018
•
thanks
Thanks man
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment