PCLZIP "Umlaut"-Problem
Brought to you by:
vblavet
When extracting a file to a folder, german special Characters (ä,Ä,ü,Ü,ö,Ö,ß)are converted into other signs such as: Â for ü.
This characters can neither be read by the browser or the server.
Here is the code I used to extract the files:
<?
$archive = new PclZip($_FILES["zipdatei"]["tmp_name"]);
$list = $archive->extract(PCLZIP_OPT_PATH, $galerieordner, PCLZIP_OPT_REMOVE_ALL_PATH);
?>
Thank you!