复制代码 代码如下:
<?php $a=zip_open('other.zip'); while ($e=zip_read($a)){ $fz = zip_entry_filesize($e); $fn = iconv('GBK','UTF-8',zip_entry_name($e)); if (!$fz){//dir mkdir($fn); continue; } if (!zip_entry_open($a, $e)) continue; file_put_contents($fn, zip_entry_read($e, $fz)); echo "$fz\t$fn\n"; zip_entry_close($e); } zip_close($a); ?>
查看更多关于中文win32下,文件名使用GBK编码 Linux下,文件名使的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did7120