__construct() 공개 메소드

Constructor.
public __construct ( string $cipher )
$cipher string Either 'ecb' or 'cbc'.
예제 #1
0
파일: Mcrypt.php 프로젝트: evltuma/moodle
 /**
  */
 public function __construct($cipher)
 {
     parent::__construct($cipher);
     $this->_mcrypt = mcrypt_module_open(MCRYPT_BLOWFISH, '', $cipher, '');
 }