Extract Zip File using Php:
You can use Php language to unzip a zip file. Here is a simple code to unzip a zip file using php. Php has ZipArchive class to do this.
= new ZipArchive;
$zipfile->open('zipfilename.zip');
$zipfile->extractTo('./destination');
$zipfile->close(); ?>
0 comments:
Post a Comment