W3cubDocs

/Symfony 3.0

Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy

class SessionHandlerProxy extends AbstractProxy implements SessionHandlerInterface

SessionHandler proxy.

Methods

string getSaveHandlerName()

Gets the session.save_handler name.

from AbstractProxy
bool isSessionHandlerInterface()

Is this proxy handler and instance of \SessionHandlerInterface.

from AbstractProxy
bool isWrapper()

Returns true if this handler wraps an internal PHP session save handler using \SessionHandler.

from AbstractProxy
bool isActive()

Has a session started?

from AbstractProxy
string getId()

Gets the session ID.

from AbstractProxy
setId(string $id)

Sets the session ID.

from AbstractProxy
string getName()

Gets the session name.

from AbstractProxy
setName(string $name)

Sets the session name.

from AbstractProxy
__construct(SessionHandlerInterface $handler)

Constructor.

open($savePath, $sessionName)

{@inheritdoc}

close()

{@inheritdoc}

read($sessionId)

{@inheritdoc}

write($sessionId, $data)

{@inheritdoc}

destroy($sessionId)

{@inheritdoc}

gc($maxlifetime)

{@inheritdoc}

Details

public string getSaveHandlerName()

Gets the session.save_handler name.

Return Value

string

public bool isSessionHandlerInterface()

Is this proxy handler and instance of \SessionHandlerInterface.

Return Value

bool

public bool isWrapper()

Returns true if this handler wraps an internal PHP session save handler using \SessionHandler.

Return Value

bool

public bool isActive()

Has a session started?

Return Value

bool

public string getId()

Gets the session ID.

Return Value

string

public setId(string $id)

Sets the session ID.

Parameters

string $id

Exceptions

LogicException

public string getName()

Gets the session name.

Return Value

string

public setName(string $name)

Sets the session name.

Parameters

string $name

Exceptions

LogicException

public __construct(SessionHandlerInterface $handler)

Constructor.

Parameters

SessionHandlerInterface $handler

public open($savePath, $sessionName)

{@inheritdoc}

Parameters

$savePath
$sessionName

public close()

{@inheritdoc}

public read($sessionId)

{@inheritdoc}

Parameters

$sessionId

public write($sessionId, $data)

{@inheritdoc}

Parameters

$sessionId
$data

public destroy($sessionId)

{@inheritdoc}

Parameters

$sessionId

public gc($maxlifetime)

{@inheritdoc}

Parameters

$maxlifetime