Delete All files from the ZIP in php

Delete All files from the ZIP in php

Delete All files from the ZIP in php
    





$zips = new ZipArchive;

if ($zips->open("ExportedActivities.zip",  ZipArchive::CREATE)) 
{
   for ($i = 0; $i < $zips->numFiles; $i++)
   {    
  $filename = $zips->getNameIndex($i);    
  $zips->deleteName("$filename");
   }  
$zips->close();
}

0 Response to "Delete All files from the ZIP in php"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel