Zip Encoding Class in code igniter - PHP Views : 260
Tagged in : PHP
0 0
Send mail


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
By gowtham, On - 2010-09-17



    Login to add Comments .