0

我需要一个 php 脚本来提取文件(带有文件夹和子文件夹)并创建一个日志,其中插入一些有关提取的文件的信息。

现在,下面的脚本提取了一个 zip 文件(包含文件夹和子文件夹),但仅在 csv 文件中插入了最后一个提取的文件信息。如何修复它以创建所有文件提取信息的列表。

感谢帮助。

file = "test.zip";
$dir = getcwd();
function Unzip($dir, $file, $destiny="")
{
$dir .= DIRECTORY_SEPARATOR;
$path_file = $dir . $file;
$zip = zip_open($path_file);
$_tmp = array();
$count=0;
if ($zip)
{
    while ($zip_entry = zip_read($zip))
    {
        $_tmp[$count]["filename"] = zip_entry_name($zip_entry);
        $_tmp[$count]["stored_filename"] = zip_entry_name($zip_entry);
        $_tmp[$count]["size"] = zip_entry_filesize($zip_entry);
        $_tmp[$count]["compressed_size"] = zip_entry_compressedsize($zip_entry);
        $_tmp[$count]["mtime"] = "";
        $_tmp[$count]["comment"] = "";
        $_tmp[$count]["folder"] = dirname(zip_entry_name($zip_entry));
        $_tmp[$count]["index"] = $count;
        $_tmp[$count]["status"] = "ok";
        $_tmp[$count]["method"] = zip_entry_compressionmethod($zip_entry);

        if (zip_entry_open($zip, $zip_entry, "r"))
        {
            $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
            if($destiny)
            {
                $path_file = str_replace("/",DIRECTORY_SEPARATOR, $destiny . zip_entry_name($zip_entry));
            }
            else
            {
                $path_file = str_replace("/",DIRECTORY_SEPARATOR, $dir . zip_entry_name($zip_entry));
            }
            $new_dir = dirname($path_file);

            mkdir($new_dir);

            $fp = fopen($dir . zip_entry_name($zip_entry), "w");
            fwrite($fp, $buf);
            fclose($fp);

            zip_entry_close($zip_entry);

        }
        echo "\n</pre>";
        $count++;
        $named = zip_entry_name($zip_entry);                            
        $outputfile = "log.csv";
        if (!$outfilefp = fopen($outputfile, "w"))
        die("<br>No write on $outputfile");
        else
        echo "<br>Add lines to csv file";
        $temp = array($path_file,$new_dir,$named);
        fputcsv($outfilefp, $temp, ";");
    }

    zip_close($zip);
}
}
  Unzip($dir,$file);
4

1 回答 1

0

实际上它是插入每一个,但你每次都覆盖最后插入的文件,所以你只看到最后一个。fopen的模式应该不是w

'w' 只为书写而打开;将文件指针放在文件的开头并将文件截断为零长度。如果该文件不存在,请尝试创建它。

'a' 只供书写;将文件指针放在文件末尾。如果该文件不存在,请尝试创建它。

于 2012-10-07T19:01:39.363 回答