PHP Classes

File: sample3.php

Recommend this page to a friend!
  Classes of Sext   PHPZip   sample3.php   Download  
File: sample3.php
Role: Example script
Content type: text/plain
Description: Put all files from some directory(include subdirectories) in ZIP archive
Class: PHPZip
Makes zip archive
Author: By
Last change:
Date: 21 years ago
Size: 182 bytes
 

Contents

Class file image Download
<?
   
# Put all files from some directory(include subdirectories) in ZIP archive

   
require("phpzip.inc.php");

   
$z = new PHPZip();
   
$z -> Zip("/usr/local/sext/", "out3.zip");
?>