i wanna extract many ziped folders, but i am not successfull. i have find out problem but not the solution of that.
whenever i pass an array or associative array in a for loop to code given below to extract all ziped folders to unzip it stop working.
$zip = new ZipArchive;
if ($zip->open($arrayName) === true){
//not work
}
but i pass only one file name it accept but in case of array i dont work.
$zip = new ZipArchive;
if ($zip->open('abc.zip') === true){
//it will work
}
so now i wanna know that how i can extract many ziped folders...............?