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

WBOY
Release: 2016-06-23 14:12:25
Original
828 people have browsed it

在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'];
}


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


回复讨论(解决方案)

你的代码中有 $fp = fopen("/php/". zip_entry_name($zip_entry), 'w');
怎么能说 zip_entry_name($zip_entry) 返回的是数组呢?

echo "[zip_entry_name($zip_entry)]";   出来这个 [zip_entry_name(Array)]
echo "[$zip_entry]";     出来这个 [Array]

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

echo zip_entry_name($zip_entry);
出来什么?

出来了,哈哈 
又有问题了。。。 我用substr 重新命名了 然后

1.我要放解压开来文件的目录 在哪里设置呢?
2.在哪里将原来的文件替换成我想要的名字呢?

继续求指教。。。

在你的代码中
     $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');

老大,你还有其他联系方式吗。。。。
我发现解压开来的东西 里面除了个文件名留着。。。图片都不显示。。。。

我echo $buf 在网页上能显示20行的乱码。。应该大小不错吧 是不是fwrite的问题啊。。还是编码格式?

window 环境?
要用二进制方式打开文件

linux下。
我又在自己的目录下面可以运行 成功了 。
到公用的下面 就只有文件名,图片还是打不开。。。

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