SessionHandlerInterface::open

(PHP 5 >= 5.4.0)

SessionHandlerInterface::open — Initialize session


Описание

abstract public bool SessionHandlerInterface::open ( string $save_path , string $name )

Re-initialize existing session, or creates a new one. Called when a session starts or when session_start() is invoked.


Список параметров

save_path - The path where to store/retrieve the session.

name - The session name.


Возвращаемые значения

Возвращаемое значение сессионного хранилища (обычно TRUE в случае успеха, FALSE в случае ошибки). Данное значение возвращается обратно в PHP для внутренней обработки.


Смотрите также


User Contributed Notes 1 note



0
ross at newmail dot ru2 months ago
You should lock your program for as shorter as possible. Lock it straight before read/write operation and unlock it just after this operation. Otherwise you will face with perfomance degradation and even lock your program at all.
Example.
You bind your session to db. Your open method opens the db connection and locks it. No other parallel requests will not be possible until the hole request to your site will be finished (and session close will be called)


Описание класса sessionhandlerinterface, примеры использования класса sessionhandlerinterface.

Описание на ru2.php.net
Описание на php.ru