php压缩中文乱码问题如何解决
这篇“php压缩中文乱码问题如何解决”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“php压缩中文乱码问题如何解决”文章吧。
php压缩中文乱码的解决方法:1、通过“composer require nelexa/zip”安装PhpZip;2、打开“ZipFile.php”;3、找到“extractTo”方法,将“is_writable”函数改掉或去掉;4、转换一下编码格式即可。
解决php使用ZipArchive解压时中文乱码问题(纯php,绕开ZipArchive)
解决php使用ZipArchive解压时中文乱码问题
使用php自带的ZipArchive来解压带中文文件名压缩包时会造成乱码,现象如下:
网上查阅基本上给出的答案大同小异,自己照着同样的方法试了都不能解决,下图是网上给出的方案:
经过摸索终于找到了解决方案,那就是弃用ZipArchive,选择其他的途径,经过比较我选择了“PhpZip”,优点是:纯php(不需要扩展和类),下面介绍安装方法:
composer安装:
登录后复制composer require nelexa/zip
如果选择版本的话:composer require nelexa/zip:^3.0 (3.0版本号)
使用方法:
登录后复制//解压文件$fileAddess = "压缩包地址";$toDir = "解压目录";$zipFile = new \PhpZip\ZipFile();$zipFile->openFile($fileAddess) // open archive from file->extractTo($toDir); // extract files to the specified directory$zipFile->close();
注释:(**如果安装好使用正常请忽略下面的注释内容**)
我的压缩包放在共享盘里面连接的是smb地址,可能会出现报错:"Destination is not writable directory",这个坑已经踩过:打开ZipFile.php这个文件,找到“extractTo”方法,将“is_writable”函数改掉,或者去掉,然后再转换一下编码格式!,下面有注释的是我修改的内容!
public function extractTo($destination, $entries = null) { if (!file_exists($destination)) { throw new ZipException("Destination " . $destination . " not found"); } if (!is_dir($destination)) { throw new ZipException("Destination is not directory"); } $is_really_writable = $this->is_really_writable($destination); if (!$is_really_writable) { throw new ZipException("Destination is not writable directory"); } if (!empty($entries)) { if (is_string($entries)) { $entries = (array)$entries; } if (is_array($entries)) { $entries = array_unique($entries); $flipEntries = array_flip($entries); $zipEntries = array_filter( $this->centralDirectory->getEntries(), function ($zipEntry) use ($flipEntries) { return isset($flipEntries[$zipEntry->getName()]); } ); } } else { $zipEntries = $this->centralDirectory->getEntries(); } foreach ($zipEntries as $entry) { header("Content-type:text/html;charset=bgk"); $entry_getName = iconv('GB2312', 'UTF-8//ignore',$entry->getName()); //header("Content-type:text/html;charset=utf-8"); $file = $destination . DIRECTORY_SEPARATOR . $entry_getName; if ($entry->isDirectory()) { if (!is_dir($file)) { if (!mkdir($file, 0755, true)) { throw new ZipException("Can not create dir " . $file); } chmod($file, 0755); touch($file, $entry->getTime()); } continue; } $dir = dirname($file); if (!is_dir($dir)) { if (!mkdir($dir, 0755, true)) { throw new ZipException("Can not create dir " . $dir); } chmod($dir, 0755); touch($dir, $entry->getTime()); } if (file_put_contents($file, $entry->getEntryContent()) === false) { throw new ZipException('Can not extract file ' . $entry_getName); } touch($file, $entry->getTime()); } return $this; } //王天佑加的新逻辑,判断目录是否可写 public function is_really_writable($file){ if (DIRECTORY_SEPARATOR == '/' AND @ini_get("safe_mode") == FALSE) { return is_writable($file); } if (is_dir($file)) { $file = rtrim($file, '/') . '/' . md5(mt_rand(1,100) . mt_rand(1,100)); if (($fp = @fopen($file, "w+")) === FALSE) { return FALSE; } fclose($fp); @chmod($file, 0777); @unlink($file); } elseif (!is_file($file) OR ($fp = @fopen($file, "r+")) === FALSE) { fclose($fp); return FALSE; } return TRUE; }
以上就是关于“php压缩中文乱码问题如何解决”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341