Lines Matching refs:zip
4 zip
12 $zip = new ZipArchive();
13 $zip->open($dir . '/test.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);
14 $zip->addGlob($dir . '/*.txt', GLOB_NOSORT, array('remove_all_path' => true));
15 $zip->close();
17 $zip = new ZipArchive();
18 $zip->open($dir . '/test.zip');
19 var_dump($zip->numFiles);
20 var_dump($zip->getNameIndex(0));
21 $zip->close();
27 unlink($dir . '/test.zip');