aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorpabs <pabs@vault.home.pablotron.org>2007-08-23 03:53:33 -0400
committerpabs <pabs@vault.home.pablotron.org>2007-08-23 03:53:33 -0400
commit267cc98b71999d386f2155f0d0aea809ba1d22a4 (patch)
tree6f2a5d760283966acaf7905c9a6f3edfa78e9afc /README
parent2a4160e670f476cb797a812429ef622e8009343c (diff)
parentaeb68198d5b8a15ccc8f4a3798a239ae6f74d374 (diff)
downloadzipstream-php-267cc98b71999d386f2155f0d0aea809ba1d22a4.tar.bz2
zipstream-php-267cc98b71999d386f2155f0d0aea809ba1d22a4.zip
Merge branches.v0.1.0
Diffstat (limited to 'README')
-rw-r--r--README29
1 files changed, 29 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..82e8f07
--- /dev/null
+++ b/README
@@ -0,0 +1,29 @@
+ZipStream 0.1.0 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.
+
+About the Author
+================
+Paul Duncan <pabs@pablotron.org>
+http://pablotron.org/