$zipdata
$zipdata : string
Zip data in string form
Zip Compression Class
This class is based on a library I found at Zend: http://www.zend.com/codex.php?id=696&single=1
The original library is a little rough around the edges so I refactored it and added several additional methods -- Rick Ellis
add_data(mixed $filepath, string $data = NULL) : void
Add Data to Zip
Lets you add files to the archive. If the path is included in the filename it will be placed within a directory. Make sure you use add_dir() first to create the folder.
mixed | $filepath | A single filepath or an array of file => data pairs |
string | $data | Single file contents |
read_dir(string $path, boolean $preserve_filepath = TRUE, string $root_path = NULL) : boolean
Read a directory and add it to the zip.
This function recursively reads a folder and everything it contains (including sub-folders) and creates a zip based on it. Whatever directory structure is in the original file path will be recreated in the zip file.
string | $path | path to source directory |
boolean | $preserve_filepath | |
string | $root_path |
clear_data() : \CI_Zip
Initialize Data
Lets you clear current zip data. Useful if you need to create multiple zips with different data.