-1

我在使用 ZipArchive extractTo 时遇到问题。

我有一个 +300Mb ZIP 文件,每个文件夹有 100 个文件夹和 +3k XML 文件。当我开始这个过程时,它会运行到 20 个文件夹和内部档案并停止工作。

这是我的解压缩功能...

public function unzip_files($zipfile, $parent_folder)
{
    ini_set('memory_limit', '512M');
    set_time_limit(0);      

    $zip = new ZipArchive;
    $res = $zip->open($zipfile);

    if( $res === true )
    {
        if( $zip->extractTo(HCAT_UPLOADS . $parent_folder) );
        {
            $zip->close();

            print '<strong>'. basename($zipfile) .'</strong> '. __('unziped correctly', self::$ltd) .'.<br />';

            return true;
        }
        else
        {
            print __('Failed to unzip', self::$ltd) .' <strong>'. basename($zipfile) .'</strong>.<br />';

            return false;
        }
    }
    else
    {
        print __('Failed to unzip', self::$ltd) .' <strong>'. basename($zipfile) .'</strong>.<br />';

        return false;
    }
}

如何解压缩所有文件夹?有什么提示吗?:)

谢谢!
R

4

2 回答 2

2

ZipArchive 将 ExtractTo 限制为 65535 个文件,并且无法进行偏移。

因此,BTW 发现的最佳解决方法是使用 shell 命令:

public function unzip_files($zipfile, $parent_folder)
{
    $disableds = explode(', ', ini_get('disable_functions'));

    if( !in_array('exec', $disableds) )
    {
        exec("unzip -o $zipfile -x -d $parent_folder");

        print '<strong>'. basename($zipfile) .'</strong> '. __('unziped correctly', self::$ltd) .'.<br />';
    }
}

最好的!
R

于 2012-09-24T12:47:29.500 回答
0

它对我有用..!! 因为我们的应用程序之一在 PHP 5.3 中运行 -extractTo()这不允许我们上传超过 65KB 的 ZIP 文件。

exec("unzip -o $zipFileName -x -d $uploadedPath");

例子:

$zip_obj = new ZipArchive();
$zip_obj_data = $zip_obj->open($zipFileName);
if ($zip_obj_data === true) {
    #$zip_obj->extractTo($uploaded_path);
    #$zip_obj->close();
    $disableds = explode(', ', ini_get('disable_functions'));
    if( !in_array('exec', $disableds) )
    {
        $zipfile = $zipFileName;
        exec("unzip -o $zipfile -x -d $uploaded_path");
    } 
    unlink($zipFileName);

}    

注意:'exec' 命令不属于 PHP 安全组,使用此命令可能会带来风险。

于 2017-09-01T13:10:06.393 回答