PHP 解压缩 仍是不会。求解决

WBOY
Release: 2016-06-13 12:47:18
Original
917 people have browsed it

PHP 解压缩 还是不会。。求解决
在PHP中 一个压缩包上传,我已经能够解压开来。
现在如何在解压的同时重命名,并且放到另一个目录下啊?
请大神指教。
解压程式
$zip = zip_open("/php/test/test.zip");

if ($zip) {
  while ($zip_entry = zip_read($zip)) {
     $fp = fopen("/php/".zip_entry_name($zip_entry), 'w');
     if (zip_entry_open($zip, $zip_entry, "r")) {
     $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));

     fwrite($fp,'$buf');
     zip_entry_close($zip_entry);
     fclose($fp);
     }
    }
  zip_close($zip);
 }
求在中间加上重命名与另存到一个目录下的功能。。。。


zip_entry_name($zip_entry) 得到的是包中的文件名
你用字符串函数处理一下,生成目标文件名就是了

我 echo "zip_entry_name($zip_entry)" 出来的是Array 啊

function zip_entry_name(&$res)
{
  if(!$res) return false;
  return $res['name'];
}


重新求解决。。。我真弄不了。。。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template