get_zip()
Returns: | Zip file content |
---|---|
Return type: | string |
Returns the Zip-compressed file data. Generally you will not need this method unless you want to do something unique with the data. Example:
1 2 3 4 5 6 | $name = 'my_bio.txt' ; $data = 'I was born in an elevator...' ; $this ->zip->add_data( $name , $data ); $zip_file = $this ->zip->get_zip(); |
Please login to continue.