<?php #this is example extract files and folders from zip file
 
 
//-------------------------------------------------------------------------------
 
// Before using this example please run example1
 
//-------------------------------------------------------------------------------
 
 
require_once("Zipek.class.php");
 
 
$where2Save = 'tuZapisz';
 
$fName = 'letAllBeingsBeHappy.zip';
 
 
$zip = new Zipek($where2Save.'/'.$fName,false);
 
$zip->openfile();
 
$zip->unpack2folder($where2Save);
 
$zip->showStatus();
 
$zip->make();
 
 
 |