0

我正在使用以下代码下载存档的 csv 文件并解压缩:

$url="http://www.some.zip";
$target = 'data-' . md5(microtime()) . '.zip';

function download($src, $dst) {
        $f = fopen($src, 'rb');
        $o = fopen($dst, 'wb');
        while (!feof($f)) {
            if (fwrite($o, fread($f, 2048)) === FALSE) {
                   return 1;
            }
        }
        fclose($f);
        fclose($o);
        return 0;
}

download($url,$target);

if ( file_exists($target) ){
    echo "Download Successuful <br />";
    $arc = new ZipArchive;
    if (true !== $arc->open($target)) {
        echo "Unzipping Failed <br />";
    }else {
        file_put_contents($out, $arc->getFromIndex(0));
        echo "Unzipping Successuful <br />";
        fclose($handle);
    }
}else {
     echo "Download Failed <br />";
}

但是,在第二次运行时,它什么也没做,我想用较新的文件覆盖初始文件。(CSV 文件)

我该怎么做?解决方案应该与第一次下载的时间差不多!

4

1 回答 1

1

最简单的解决方案是首先检查文件是否存在,然后将其删除。

function download($src, $dst) {
    if(file_exists($dst)) unlink($dst);
    $f = fopen($src, 'rb');
    $o = fopen($dst, 'wb');
    while (!feof($f)) {
        if (fwrite($o, fread($f, 2048)) === FALSE) {
               return 1;
        }
    }
    fclose($f);
    fclose($o);
    return 0;

}

于 2013-08-02T17:45:34.530 回答