SessionHandlerInterface::close

(PHP 5 >= 5.4.0)

SessionHandlerInterface::closeClose the session

說明

abstract public bool SessionHandlerInterface::close ( void )

Closes the current session. This function is automatically executed when closing the session, or explicitly via session_write_close().

參數

此函式沒有參數。

回傳值

session儲存的回傳值(通常成功回傳 0,失敗回傳 1)。

add a note add a note

User Contributed Notes 1 note

up
3
svenr at selfhtml dot org
11 years ago
This method should release the exclusive lock that was acquired by the open() method.

Note that this will effectively serialize parallel requests, which affects performance for a single user session.

Not locking the resource would on the other hand allow for race conditions if two or more parallel requests change the session data.
To Top