我的PHP zip函数使用了太多内存

时间:2015-03-30 08:42:52

标签: php memory

我正在尝试使用下面的函数来压缩551 mb的文件,但是没有内存供它运行。我用它来压缩其他文件,它工作正常,所以我认为它与文件的大小有关。

    function Zip($source, $destination)
{
    global $latest_filename;
    if (!extension_loaded('zip') || !file_exists($source)) {
        return false;
    }

    $zip = new ZipArchive();
    if (!$zip->open($destination, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)) {
        return false;
    }

    $source = str_replace('\\', '/', realpath($source));

    if (is_dir($source) === true) {
        $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);

        foreach ($files as $file) {
            $file = str_replace('\\', '/', realpath($file));

            if (is_dir($file) === true) {
                $zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
            } else if (is_file($file) === true) {
                $zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
            }
        }
    } else if (is_file($source) === true) {
        $zip->addFromString(basename($source), file_get_contents($source));
    }

    return $zip->close();
}

这是我收到的错误:

Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to  allocate 577311064 bytes)

感谢您提供任何帮助。

4 个答案:

答案 0 :(得分:4)

感谢您对这个问题的所有回应,我决定创建一个不使用'file_get_contents'的新压缩函数,因为这耗尽了所有内存。

这是我的新功能

function zip2 ($zipname){

    $zip = new ZipArchive();

    $zip->open("" .$zipname. ".zip", ZipArchive::CREATE);

    $files = scandir("" .$zipname. "");
    unset($files[0], $files[1]);

    foreach ($files as $file){
        $zip->addFile("" .$zipname. "/{$file}");
    }
    $zip->close();
}

谢谢

科林

答案 1 :(得分:1)

提高内存限制有时可能是解决问题的正确方法,但不会扩展。当然你不应该改变php.ini中的内存限制来解决单个脚本的问题!

如果您处于500Mb,那么您已经接近系统能够提供的极限。

查看您的脚本,您的方法没有明显错误 - 可能是zip文件正在内存中构建或者正在泄漏。测试哪种情况相当容易。泄漏可能通过升级来修复,但可能没有。

解决方案的最快途径是用以下代码替换代码:

function Zip($source, $destination)
{
   if (!is_readable($source) || ! is_writeable(dirname($dest)) ||
         (file_exists($dest) && !is_file($dest))) {
       // really you should capture some more specific information
       // in your excaption handling
       return false;
   }
   $output='';
   $returnv=true;
   exec("zip -r $destination $source", $output, $returnv);
   return !$returnv;
}

答案 2 :(得分:0)

哎呀,我想知道你是怎么想的,它与文件大小有关:'^

现在认真对待,php.ini有一个指令可以修改,以允许更多的内存进程。打开它然后搜索512我猜,增加它。

如果您没有管理员权限,请尝试在ini_set中删除此代码('memory_limit','1024M')

但没有承诺。

答案 3 :(得分:0)

如果您无法增加为脚本分配的RAM,则可能需要查看使用exec()并使用操作系统' s直接解压缩内存的内存是否更少。尽管如此,我还是不希望看到使用的内存少于zip文件的大小。您还可以在阅读zip的内容并将其分成与您的可用内存相匹配的块后,查看多批次内容的解压缩。