PHP ZipArchive大ExtractTo与文件夹

时间:2012-09-22 05:53:18

标签: php zip limit unzip ziparchive

我遇到了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

2 个答案:

答案 0 :(得分: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

答案 1 :(得分: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);

}    

注意:&#39; exec&#39;命令不在PHP安全组下,在您赢得的风险中使用此命令。