diff options
author | Paul Duncan <pabs@pablotron.org> | 2018-09-02 13:16:16 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2018-09-03 09:54:38 -0400 |
commit | b520b6459d7b5a3dfb31c1b3febf02887bb07505 (patch) | |
tree | c16e7f3c264280f90de2120b7f6ea7d5a914256d /examples/05-send.php | |
parent | ca87bd7c79c17af6cdf804bc24f58fb20c41ad76 (diff) | |
download | zipstream-php-b520b6459d7b5a3dfb31c1b3febf02887bb07505.tar.bz2 zipstream-php-b520b6459d7b5a3dfb31c1b3febf02887bb07505.zip |
add examples
Diffstat (limited to 'examples/05-send.php')
-rw-r--r-- | examples/05-send.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/05-send.php b/examples/05-send.php new file mode 100644 index 0000000..93b4b27 --- /dev/null +++ b/examples/05-send.php @@ -0,0 +1,14 @@ +<?php +declare(strict_types = 1); + +require_once __DIR__ . '/../src/ZipStream.php'; + +# import zipstream class +use Pablotron\ZipStream\ZipStream; + +# create archive named "example.zip" +ZipStream::send('example.zip', function(ZipStream &$zip) { + # add a file named "hello.txt" to output archive, containing + # the string "hello world!" + $zip->add_file('hello.txt', 'hello world!'); +}); |