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
Author: EllisLab Dev Team
示例#1
0
 function MY_Zip()
 {
     parent::__construct();
 }
示例#2
0
 /**
  * Initialize zip compression class
  *
  * @return	void
  */
 public function __construct()
 {
     isset(self::$func_override) or self::$func_override = extension_loaded('mbstring') && ini_get('mbstring.func_override');
     $this->now = time();
     log_message('info', 'Zip Compression Class Initialized');
 }
示例#3
0
 function MY_Zip()
 {
     parent::CI_Zip();
 }