mirror of
https://github.com/php/php-src.git
synced 2026-04-26 17:38:14 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
28 lines
552 B
PHP
28 lines
552 B
PHP
--TEST--
|
|
Bug #8700 (getFromIndex(0) fails)
|
|
--EXTENSIONS--
|
|
zip
|
|
--FILE--
|
|
<?php
|
|
$thisdir = __DIR__;
|
|
$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
|