示例#1
0
 function MY_Session()
 {
     parent::CI_Session();
     $this->validateSession();
 }
示例#2
0
 function MY_Session($params = array())
 {
     // encryption must be forced on to alleviate conflict between WordPress and CI treatments of $_COOKIE scope
     $params['sess_encrypt_cookie'] = TRUE;
     parent::CI_Session($params);
 }
示例#3
0
文件: TT_Session.php 项目: szlon/kids
 public function __construct()
 {
     parent::CI_Session();
     $this->is_logged_in();
 }