aboutsummaryrefslogtreecommitdiff
path: root/README
blob: 2ae8b27b2fb51c66a71fba48dd1ab63fcd36e79a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
ZipStream 0.2.2 README
======================

Please see the file COPYING for licensing and warranty information.  The
latest version of this software is available at the following URL:

    http://pablotron.org/software/zipstream-php 

Overview
========
A fast and simple streaming zip file downloader for PHP.  Here's a
simple example:

    # create a new zipstream object
    $zip = new ZipStream('example.zip');

    # add a file named 'image.jpg'
    $zip->add_file('image.jpg', file_get_contents('image.jpg'));

    # finish the zip stream
    $zip->finish();

You can also add comments, modify file timestamps, and customize (or
disable) the HTTP headers.  See the class file for details.  There are a
couple of additional examples in the initial release announcement at the
following URL:

    http://pablotron.org/?cid=1535

Requirements
============

  * PHP version 5.1.2 or newer (specifically, the hash_init and
    hash_file functions).

About the Author
================
Paul Duncan <pabs@pablotron.org>
http://pablotron.org/