Example #1
0
 public static function ClearUser()
 {
     $sessionKey = SESSION_LOGIN_USER;
     $cookieKey = COOKIE_USER_ID;
     Session::Del($sessionKey);
     Cookie::Del($cookieKey);
 }