Exemplo n.º 1
0
 public static function init($type = '')
 {
     $type = $type ? $type : C('DATA_CRYPT_TYPE');
     if (strpos($type, '\\')) {
         $class = $type;
     } else {
         $class = 'Think\\Crypt\\Driver\\' . ucwords(strtolower($type));
     }
     self::$handler = $class;
 }
Exemplo n.º 2
0
 public static function init($type = '')
 {
     $type = $type ?: C('DATA_CRYPT_TYPE');
     $class = strpos($type, '\\') ? $type : 'Think\\Crypt\\Driver\\' . ucwords(strtolower($type));
     self::$handler = $class;
 }