mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
37 lines
763 B
PHP
37 lines
763 B
PHP
--TEST--
|
|
getComment
|
|
--SKIPIF--
|
|
<?php
|
|
/* $Id$ */
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$dirname = dirname(__FILE__) . '/';
|
|
$file = $dirname . 'test_with_comment.zip';
|
|
include $dirname . 'utils.inc';
|
|
$zip = new ZipArchive;
|
|
if (!$zip->open($file)) {
|
|
exit('failed');
|
|
}
|
|
echo $zip->getArchiveComment() . "\n";
|
|
|
|
$idx = $zip->locateName('foo');
|
|
echo $zip->getCommentName('foo') . "\n";
|
|
echo $zip->getCommentIndex($idx);
|
|
|
|
echo $zip->getCommentName('') . "\n";
|
|
echo $zip->getCommentName() . "\n";
|
|
|
|
$zip->close();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Zip archive comment
|
|
foo comment
|
|
foo comment
|
|
Notice: ZipArchive::getCommentName(): Empty string as entry name in %s on line %d
|
|
|
|
|
|
Warning: ZipArchive::getCommentName() expects at least 1 parameter, 0 given in %s on line %d
|