Skip to content
World Wide Web Server edited this page Jul 4, 2012 · 16 revisions

Category:Library::Zip | Category:Library::Community

Extract ZIP files in CodeIgniter without installing any PECL extensions for PHP.

[h3]Download[/h3]

[url=http://bitbucket.org/philsturgeon/codeigniter-unzip/get/tip.zip]ZIP[/url], [url=http://bitbucket.org/philsturgeon/codeigniter-unzip/get/tip.tar.gz]GZ[/url], [url=http://bitbucket.org/philsturgeon/codeigniter-unzip/get/tip.tar.bz2]BZ2[/url] from [url=http://bitbucket.org/philsturgeon/]BitBucket[/url]

[h3]Requirements[/h3]

  1. PHP 5.1+
  2. CodeIgniter 1.6.x - 2.0-dev
  3. ZLib extension enabled

[h3]Usage[/h3]

[code]$this->load->library('unzip');

// Optional: Only take out these files, anything else is ignored $this->unzip->allow(array('css', 'js', 'png', 'gif', 'jpeg', 'jpg', 'tpl', 'html', 'swf'));

// Give it one parameter and it will extract to the same folder $this->unzip->extract('uploads/my_archive.zip');

// or specify a destination directory $this->unzip->extract('uploads/my_archive.zip', '/path/to/directory/);[/code]

Clone this wiki locally