Example #1
0
 /**
  * Initialize session
  *
  * @access	public
  */
 public function __construct()
 {
     self::$cookie =& $_COOKIE;
     self::$cookie_name = 'antiphp';
     self::$cookie_value = array();
     self::$cookie_expire = time() + 60 * 60 * 24 * 30;
     $this->read_cookie();
 }