Unzip a file on one.com with PHP

Use below code to Unzip a file on one.com with PHP

<?php
$unzip = new ZipArchive;
$out = $unzip->open('file-name.zip');
if ($out === TRUE) {
 $unzip->extractTo(getcwd());
 $unzip->close();
 echo 'File unzipped';
} else {
 echo 'Something went wrong?';
}?>

Leave a Reply

Your email address will not be published. Required fields are marked *