Tuesday 8 July 2014

How to unzipp /extract the zipp file in php

Before Starting: 

 Know About File Location

  • This is my localhost side location where my index.php exist : 
'C:\xampp\htdocs\filetransfer\index.php
  • This is my  localhost side directory  Zip file : 
'C:\xampp\htdocs\filetransfer\zipfolder.zip' 
  • This is my  localhost side directory file where  want to keep that Unzipp by abc name  : 
 "C:\xampp\htdocs\filetransfer\abc";
$source="C:\xampp\htdocs\filetransfer\zipfolder.zip";
$destin= "C:\xampp\htdocs\filetransfer\abc";
create a ZipArchive instance
$zip = new ZipArchive;
if ($zip->open($source) === TRUE) {
$zip->extractTo($destin);
$zip->close();

No comments:

Post a Comment