Before Starting:
Know About File Location
- This is my localhost side location where my index.php exist :
- This is my localhost side directory Zip file :
- This is my localhost side directory file where want to keep that Unzipp by abc name :
$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