\CI_Session_driver

CodeIgniter Session Driver Class

Summary

Methods
Properties
Constants
__construct()
No public properties found
No constants found
_cookie_destroy()
_get_lock()
_release_lock()
_fail()
$_config
$_fingerprint
$_lock
$_session_id
$_success
$_failure
N/A
No private methods found
No private properties found
N/A

Properties

$_config

$_config : 

Type

$_fingerprint

$_fingerprint : boolean

Data fingerprint

Type

boolean

$_lock

$_lock : mixed

Lock placeholder

Type

mixed

$_session_id

$_session_id : string

Read session ID

Used to detect session_regenerate_id() calls because PHP only calls write() after regenerating the ID.

Type

string

$_success

$_success : mixed

Success and failure return values

Necessary due to a bug in all PHP 5 versions where return values from userspace handlers are not handled properly. PHP 7 fixes the bug, so we need to return different values depending on the version.

Type

mixed

$_failure

$_failure : mixed

Success and failure return values

Necessary due to a bug in all PHP 5 versions where return values from userspace handlers are not handled properly. PHP 7 fixes the bug, so we need to return different values depending on the version.

Type

mixed

Methods

__construct()

__construct(array  $params) : void

Class constructor

Parameters

array $params

Configuration parameters

_cookie_destroy()

_cookie_destroy() : boolean

Cookie destroy

Internal method to force removal of a cookie by the client when session_destroy() is called.

Returns

boolean

_get_lock()

_get_lock(string  $session_id) : boolean

Get lock

A dummy method allowing drivers with no locking functionality (databases other than PostgreSQL and MySQL) to act as if they do acquire a lock.

Parameters

string $session_id

Returns

boolean

_release_lock()

_release_lock() : boolean

Release lock

Returns

boolean

_fail()

_fail() : mixed

Fail

Drivers other than the 'files' one don't (need to) use the session.save_path INI setting, but that leads to confusing error messages emitted by PHP when open() or write() fail, as the message contains session.save_path ... To work around the problem, the drivers will call this method so that the INI is set just in time for the error message to be properly generated.

Returns

mixed