Lines Matching refs:zip
5 if (!extension_loaded('zip')) die('skip zip support not available');
14 $zip = new ZipArchive();
15 $zip->open($dir . '/test.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);
16 $zip->addGlob($dir . '/*.txt', GLOB_NOSORT, array('remove_all_path' => true));
17 $zip->close();
19 $zip = new ZipArchive();
20 $zip->open($dir . '/test.zip');
21 var_dump($zip->numFiles);
22 var_dump($zip->getNameIndex(0));
23 $zip->close();
29 unlink($dir . '/test.zip');