1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/zip/tests/bug72258.phpt
T
Anatol Belski 933d6b188c fix test title
2016-05-30 12:48:00 +02:00

27 lines
501 B
PHP

--TEST--
Bug #72258 ZipArchive converts filenames to unrecoverable form
--SKIPIF--
<?php
/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
<?php
$fn = dirname(__FILE__) . DIRECTORY_SEPARATOR . "bug72258.zip";
$zip = new \ZipArchive();
$res = $zip->open($fn);
if ($res !== true) {
echo 'Error opening: ' . $res;
die();
}
for ($i = 0; $i < $zip->numFiles; $i++) {
$fnInArc = $zip->getNameIndex($i, ZipArchive::FL_ENC_RAW);
var_dump($fnInArc);
}
?>
--EXPECT--
string(6) "€‚ƒ„/"