zip文件包含UTF-8内容

时间:2014-04-13 10:56:17

标签: php file utf-8 zip

我正在使用此功能来压缩文件。

function zip($path, $file){
    $zipname = getFilename($path.$file).'.zip';
    $zip = new ZipArchive();
    $zip->open($path.$zipname, ZipArchive::CREATE);
    $zip->addFile($path.$file,  $file);
    $zip->close();
    return $zipname;
}

最近,我发现文件中包含utf-8内容(文件名也是)的错误。结果类似于:

        Thùc hiÖn c«ng v¨n sè 775-CV/QU, ngµy 30 th¸ng 11 n¨m 2009 cña 
QuËn uû §å S¬n vÒ viÖc chuÈn bÞ b¸o c¸o t×nh h×nh

我该如何解决?

0 个答案:

没有答案