Login   Register  
PHP Classes
elePHPant
Icontem

File: Zip.Example2.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Asbjorn Grandt  >  Zip  >  Zip.Example2.php  >  Download  
File: Zip.Example2.php
Role: Example script
Content type: text/plain
Description: Example file for generating a zip file and save it on the server.
Class: Zip
Create archives of compressed files in ZIP format
Author: By
Last change:
Date: 2010-03-28 07:57
Size: 1,134 bytes
 

Contents

Class file image Download
<?php
// Example. Zip all .html files in the current directory and save to current directory.
// Make a copy, also to the current dir, for good measure.
$fileDir './';

include_once(
"Zip.php");
$fileTime date("D, d M Y H:i:s T");

$zip = new Zip();
$zip->setZipFile("ZipExample.zip");

$zip->setComment("Example Zip file.\nCreated on " date('l jS \of F Y h:i:s A'));
$zip->addFile("Hello World!""hello.txt");

if (
$handle opendir($fileDir)) {
    
/* This is the correct way to loop over the directory. */
    
while (false !== ($file readdir($handle))) {
        if (
strpos($file".html") !== false) {
            
$pathData pathinfo($fileDir $file);
            
$fileName $pathData['filename'];

            
$zip->addFile(file_get_contents($fileDir $file), $filefilectime($fileDir $file));
        }
    }
}

$zip->finalize(); // as we are not using getZipData or getZipFile, we need to call finalize ourselves.
$zip->setZipFile("ZipExample2.zip");
?>
<html>
<head>
<title>Zip Test</title>
</head>
<body>
<h1>Zip Test</h1>
<p>Zip files saved, length is <?php echo strlen($zip->getZipData()); ?> bytes.</p>
</body>
</html>