forked from maennchen/ZipStream-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Git Version of http://pablotron.org/software/zipstream-php/ for Packagist
License
danmi1258/ZipStream-PHP
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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'); # create a file named 'hello.txt' $zip->add_file('some_image.jpg', 'This is the contents of hello.txt'); # add a file named 'image.jpg' from a local file 'path/to/image.jpg' $zip->add_file_from_path('some_image.jpg', 'path/to/image.jpg'); # add a file named 'goodbye.txt' from an open stream resource $fp = tmpfile(); fwrite($fp, 'The quick brown fox jumped over the lazy dog.'); $zip->add_file_from_stream('goodbye.txt', $fp); fclose($fp); # 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 <[email protected]> http://pablotron.org/
About
Git Version of http://pablotron.org/software/zipstream-php/ for Packagist
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- PHP 100.0%