ZipStream-PHP : streaming dynamic zip files from PHP without writing to the disk
Jul 18
ZipStream-PHP. ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server. Using it is dirt simple, too. Here’s how: # create a new stream object $zip = new ZipStream('example.zip'); # then add one or more files # add first file (dynamically generated) $data = "This is the contents of a...
Read More