Zebra_Session::regenerate_id PHP Méthode

regenerate_id() public méthode

Call this method whenever you do a privilege change in order to prevent session hijacking! first, connect to a database containing the sessions table include the class require 'path/to/Zebra_Session.php'; start the session where $link is a connection link returned by mysqli_connect $session = new Zebra_Session($link, 'sEcUr1tY_c0dE'); regenerate the session's ID $session->regenerate_id();
public regenerate_id ( ) : void
Résultat void
    public function regenerate_id()
    {
        // regenerates the id (create a new session with a new id and containing the data from the old session)
        // also, delete the old session
        session_regenerate_id(true);
    }