Lines Matching refs:zip
6 if(!extension_loaded('zip')) die('skip');
11 $file = $dirname . 'test_with_comment.zip';
13 $zip = new ZipArchive;
14 if (!$zip->open($file)) {
17 echo $zip->getArchiveComment() . "\n";
19 $idx = $zip->locateName('foo');
20 echo $zip->getCommentName('foo') . "\n";
21 echo $zip->getCommentIndex($idx);
23 echo $zip->getCommentName('') . "\n";
24 echo $zip->getCommentName() . "\n";
26 $zip->close();