CI_Encrypt::__construct PHP 메소드

__construct() 공개 메소드

Initialize Encryption class
public __construct ( ) : void
리턴 void
    public function __construct()
    {
        if (($this->_mcrypt_exists = function_exists('mcrypt_encrypt')) === FALSE) {
            show_error('The Encrypt library requires the Mcrypt extension.');
        }
        log_message('info', 'Encrypt Class Initialized');
    }

Usage Example

예제 #1
0
 /**
  * Constructor
  *
  */
 public function __construct()
 {
     parent::__construct();
 }
All Usage Examples Of CI_Encrypt::__construct