2015-08-25 54 views
0

我使用下面的函數來壓縮文件,但在每個目錄中它可以自動添加兩個文件,如下所示(紅色劃線)。PHP Ziparchive主機上的Linux

如何在排除這些不需要的文件的同時壓縮文件?

function ziparchive($name,$folder){ 
    // create object 
    $ziparchivename= $name.'.zip'; 
    //echo $ziparchivename; 
    $zip = new ZipArchive(); 

    // open archive 
    if ($zip->open($ziparchivename, ZIPARCHIVE::CREATE) !== TRUE) { 
    die ("Could not open archive"); 
    } 

    // initialize an iterator 
    // pass it the directory to be processed 
    $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($folder)); 

    // iterate over the directory 
    // add each file found to the archive 
    foreach ($iterator as $key=>$value) { 
    $zip->addFile(realpath($key), $key) or die ("ERROR: Could not add file: $key"); 
    } 

    // close and save archive 
    $zip->close(); 
    echo "Archive created successfully."; 
} 
+0

嘗試在'foreach'迭代器中將返回模式目錄('.'和'..')轉義出來。 –

回答

0

一些像這樣的事情應該工作。

$skipFiles = array('.', '..'); 

foreach ($iterator as $key=>$value) { 

if(!in_array($key, $skipFiles)){ 
    $zip->addFile(realpath($key), $key) or die ("ERROR: Could not add file: $key"); 
} 

php manual in_array

搜索的另一個地方是array_search。 另一個要搜索的地方是array_search。

+0

謝謝你,但它仍然沒有改進 –

+0

檢查$ key和$ value的值。確保你使用正確的。 –