Author: ApPHP | Language: php |
Description: This code allows you to Unzip a ZIP file with PHP. | Timestamp: 2017-10-02 19:22:04 +0000 |
View raw paste | Reply |
- <?php
- function unzip($location,$new_location){
- }
- 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!';
- }
- ?>
View raw paste | Reply |