1234567891011121314151617181920212223 |
- --TEST--
- Bug #72258 ZipArchive converts filenames to unrecoverable form
- --EXTENSIONS--
- zip
- --FILE--
- <?php
- $fn = __DIR__ . 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) "€�‚ƒ„/"
|