Warning: session_destroy(): Trying to destroy uninitialized session

后端 未结 6 673
孤独总比滥情好
孤独总比滥情好 2020-12-17 16:42

my class.inc file:



        
相关标签:
6条回答
  • 2020-12-17 17:16

    You'll have to call session_start() before you call session_destroy();

    Are you storing session in data in files or in a database. If you are storing it in a database, I normally just delete the record from the session table that corresponds to the session id, that way you don't have to unregister each session var and it actually deletes the whole session.

    0 讨论(0)
  • 2020-12-17 17:20

    You can add this code to start a session if it didn't start before

    if(!session_id()) {
        session_start();
    }
    
    0 讨论(0)
  • 2020-12-17 17:22

    This error is common when you haven't started the session beforehand

    if (!isset($_SESSION))
      {
        session_start();
      }
    
    0 讨论(0)
  • 2020-12-17 17:30

    Start your session session_start(); and you can destroy your session

        <?php
        session_start();
        class logout{
            public function logout(){
                $_SESSION = array();
                if (ini_get("session.use_cookies")) {
                    $params = session_get_cookie_params();
                    setcookie(session_name(), '', time() - 42000, $params['path'], $params['domain'], $params['secure'], $params["httponly"]);
                }
                session_destroy();
            }   
        }
    
    ?>
    
    0 讨论(0)
  • 2020-12-17 17:35

    I encountered the session_destroy() error message when I started using session_write_close(). To determine if session_destroy() should be called or not, I had to do the following:

    class Session {
        public static function start() {
            self::$haveSession = true;
            session_start();
        }
        public static function finish() {
            session_write_close();
            self::$haveSession = false;
        }
        public static function clear() {
            if (self::$haveSession) {
                session_unset();
                session_destroy();
            }
        }
    }
    

    In PHP >= 5.4 it should work to replace if (self::$haveSession) with if(session_status() === PHP_SESSION_ACTIVE).

    0 讨论(0)
  • 2020-12-17 17:36

    You have to call the function mentioned below at the top your logout function in the logout class.

    session_start();
    

    Add the above function and try it out. If you don’t start the session at the top of your file, it will throw exceptions like “headers already sent”, “can’t start the session”, etc.

    0 讨论(0)
提交回复
热议问题