在PHP中读取zip文件的最佳方法

时间:2010-08-30 08:50:57

标签: php zip

file_get_contents("zip:///a/b/c.zip")正在返回NULL。如何在PHP 5 +中阅读zip文件的解压缩内容?

5 个答案:

答案 0 :(得分:5)

使用zip_openzip_read函数执行此操作。 您可以在http://php.net/manual/en/function.zip-read.php

找到相关文档
<?php
/**
* This method unzips a directory within a zip-archive
*
* @author Florian 'x!sign.dll' Wolf
* @license LGPL v2 or later
* @link http://www.xsigndll.de
* @link http://www.clansuite.com
*/

function extractZip( $zipFile = '', $dirFromZip = '' )
{   
    define(DIRECTORY_SEPARATOR, '/');

    $zipDir = getcwd() . DIRECTORY_SEPARATOR;
    $zip = zip_open($zipDir.$zipFile);

    if ($zip)
    {
        while ($zip_entry = zip_read($zip))
        {
            $completePath = $zipDir . dirname(zip_entry_name($zip_entry));
            $completeName = $zipDir . zip_entry_name($zip_entry);

            // Walk through path to create non existing directories
            // This won't apply to empty directories ! They are created further below
            if(!file_exists($completePath) && preg_match( '#^' . $dirFromZip .'.*#', dirname(zip_entry_name($zip_entry)) ) )
            {
                $tmp = '';
                foreach(explode('/',$completePath) AS $k)
                {
                    $tmp .= $k.'/';
                    if(!file_exists($tmp) )
                    {
                        @mkdir($tmp, 0777);
                    }
                }
            }

            if (zip_entry_open($zip, $zip_entry, "r"))
            {
                if( preg_match( '#^' . $dirFromZip .'.*#', dirname(zip_entry_name($zip_entry)) ) )
                {
                    if ($fd = @fopen($completeName, 'w+'))
                    {
                        fwrite($fd, zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)));
                        fclose($fd);
                    }
                    else
                    {
                        // We think this was an empty directory
                        mkdir($completeName, 0777);
                    }
                    zip_entry_close($zip_entry);
                }
            }
        }
        zip_close($zip);
    }
    return true;
}

// The call to exctract a path within the zip file
extractZip( 'clansuite.zip', 'core/filters' );
?>

答案 1 :(得分:2)

使用ZipArchive

$zip = new ZipArchive;
$zip->open('test.zip');
echo $zip->getFromName('filename.txt');
$zip->close();

答案 2 :(得分:1)

看一下zip函数的构建: http://php.net/manual/en/book.zip.php

答案 3 :(得分:0)

zip://协议由PHP的ZIP extension提供。检查您的phpinfo()输出是否已安装扩展程序。

答案 4 :(得分:0)

我正在回答问题的第一部分,即使用file_get_contents方法 'file_get_contents(“ zip:///a/b/c.zip”)'通常,该方法用于读取嵌套在zip文件中的一个特定文件。为了提取所有内容;其他人给出了很好的答案。

我在Windows上使用PHP 7.2.34,后来在Linux上使用。我在d:\ data保留了一个zip文件,此语法在Windows中有效。它确实回显example1.py的内容,该内容位于ZIP文件中的“文件夹”内。

可能还与创建zip文件的位置/方式有关。当我从PHP中创建了zip文件时,内部的分隔符是反斜杠,但是当Windows创建zip文件(通过使用Windows资源管理器中的“发送到压缩文件夹”功能)时,Windows会在zip文件中使用Linux约定!

这里需要进行更多测试,以了解在zip文件中使用了哪个内部路径分隔符

    <?php
    $str = file_get_contents('zip://d:/data/demo.zip#examples\\example1.py');
    echo $str;
    ?>