使用ZipArchive创建的Zipfile解压缩为cpgz

时间:2016-01-27 11:53:00

标签: php zip ziparchive

我有这个页面,您可以将多个文件下载到zip。在我的代码中,这工作正常,但是当我尝试解压缩时,它会解压缩到filename.zip.cpgz。

这可能与我使用WordPress的事实有关,因为我之前没试过它然后它运行良好...

当我在文本编辑器中打开文件时,我收到以下错误消息:

  

警告:filesize(): /Users/johannaskogh/Desktop/workspace/olivia_schough/wp-content/themes/schoughs/page-research.php中unstraight.zip的stat失败 16 行   
  警告:无法修改标头信息 - 已经发送的标头(输出从/Users/johannaskogh/Desktop/workspace/olivia_schough/wp-content/themes/schoughs/page-research.php:16开始) /Users/johannaskogh/Desktop/workspace/olivia_schough/wp-content/themes/schoughs/page-research.php 在线 16
  
  警告:readfile(unstraight.zip):无法打开流: / Users / johannaskogh / Desktop / workspace / olivia_schough / wp-content / themes / schoughs / page中没有此类文件或目录-research.php 18 行   
  警告:unlink(unstraight.zip): /Users/johannaskogh/Desktop/workspace/olivia_schough/wp-content/themes/schoughs/page-research.php中没有此类文件或目录/ b>在线 19

以下是处理zip文件顶部的代码:

<?php

$error = ""; //error holder
if(isset($_POST['createzip'])) {
    $files = $_POST['files'];
    $zipname = time() . ".zip"; // Zip name
    $zip = new \ZipArchive(); // Load zip library
    $zip->open($zipname, ZipArchive::CREATE);
    foreach ($files as $file) {
        $zip->addFile($file);
    }
    $zip->close();
    // push to download the zip
    header('Content-Type: application/zip');
    header('Content-disposition: attachment; filename=' . $zipname);
    header('Content-Length: ' . filesize($zipname));
    ob_clean();
    readfile($zipname);
    unlink($zipname);
}
?>

以下是其余部分:

<?php get_header(); ?>

<div class="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article class="article article--about theme">
    <div class="article__part--bottom">
        <div class="container">
            <h1 class="article__title"><?php the_title();?></h1>
            <div class="article__content">
            <?php the_content(); ?>
        </div>
    </div>            
    <div class="container">
        <div class="article__content">
            <form name="zips" method="post">

                <?php
                $upload_dir = wp_upload_dir();

                // path to directory
                $directory = $upload_dir['path'] . '/research/';
                $iterator = new \DirectoryIterator($directory);
                ?>

                <div class="checkbox-list">
                <?php foreach ($iterator as $file) {
                    if ($file->isFile()) {
                        ?>
                        <div class="checkboxes">
                            <input type="checkbox" name="files[]" value="<?php echo $file->getFilename(); ?>">
                            <h3 class="font-maxima">"<?php echo $file->getFilename(); ?>"</h3>
                            <span class="smaller-font">The Unstraight Museum</span>
                        </div>

                    <?php

                    }
                }
    <input type="submit" name="createzip" value="Download as ZIP">
</form>

<?php get_footer(); ?>

我也试图改变

$file->getFilename(),

$file->getRealPath();

in

<input type="checkbox" name="files[]" value="<?php echo $file->getFilename(); ?>">

然后zip可能会被解压缩,但这里的问题是我得到了我的文件的完整路径,这是我不想要的。我只想要文件/文件。

1 个答案:

答案 0 :(得分:0)

好的,所以我设法解决问题,那就是我没有文件夹的路径。

我将表单中的value更改为$file->getRealPath(); ?>">

为了确保文件的整个路径在zip文件中不相符,我添加了$zip->addFile($file, basename($file));