The SessionIdInterface interface

(PHP 5 >= 5.5.1, PHP 7)

Wstęp

Krótki opis klasy

SessionIdInterface {
/* Metody */
abstract public create_sid ( void ) : string
}

Spis treści

add a note add a note

User Contributed Notes 1 note

up
1
ohcc at 163 dot com
3 years ago
create_sid() is called when a new session id is needed.

Such as:

0. With PHP's  default session handler, when session.use_strict_mode is turned on, if a session id provided by the client doesn't exist on the server, create_sid() is called to generate a new session id.

1. When validateId() is provided and it returns false, create_sid() is called to generate a new session id.

2. When session_regenerate_id() is called, create_sid() is called to generate a new session id.
To Top