Zip Encoding Class in code igniter
by gowtham[ Edit ] 2010-09-17 11:40:24
Zip Encoding Class
CodeIgniter's Zip Encoding Class classes permit you to create Zip archives. Archives can be downloaded to your desktop or saved to a directory.
Initializing the Class
Like most other classes in CodeIgniter, the Zip class is initialized in your controller using the $this->load->library function:
$this->load->library('zip');
Once loaded, the Zip library object will be available using: $this->zip