--TEST-- Bug #71509 Zip problem with swedish letters in filename. --SKIPIF-- --CONFLICTS-- bug71509 --FILE-- open($outputfile_zip, ZipArchive::CREATE); if ($return_code != true) die("Failed to open file: " . $return_code); $return_code = $zipfile->addfile($testfile_zip, basename($testfile_zip)); if ($return_code != true) print("Failed to add file: " . $zipfile->getStatusString()); $return_code = $zipfile->close(); if ($return_code != true) die("Failed to close archive: " . $zipfile->getStatusString()); var_dump(file_exists($outputfile_zip)); remove_data("bug71509"); ?> --EXPECT-- bool(true) bool(true)