1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00
Files
archived-php-src/ext/zip/tests/bug8700.phpt
T
Peter Kokot 0eabd5231b Remove unused Git ident attributes from zip extension
$Id attributes were used with SVN. With Git most of the Git ident
attributes in source code files are not used anymore.
2018-07-27 15:49:34 +02:00

30 lines
597 B
PHP

--TEST--
Bug #8700 (getFromIndex(0) fails)
--SKIPIF--
<?php
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
<?php
$thisdir = dirname(__FILE__);
$filename = $thisdir . "/bug8009.zip";
$zip = new ZipArchive();
if ($zip->open($filename) === FALSE) {
exit("cannot open $filename\n");
}
$contents_from_idx = $zip->getFromIndex(0);
$contents_from_name = $zip->getFromName('1.txt');
if ($contents_from_idx != $contents_from_name) {
echo "failed:";
var_dump($content_from_idx, $content_from_name);
}
$zip->close();
echo "status: " . $zip->status . "\n";
echo "\n";
--EXPECT--
status: 0